blob: 97755bae3114967c69c99418962c1040b35838c4 [file] [log] [blame]
[email protected]e3a8ebb92014-03-31 01:54:381// Copyright 2014 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
[email protected]ce5f1b32014-06-22 01:46:455#ifndef EXTENSIONS_BROWSER_GRANTED_FILE_ENTRY_H_
6#define EXTENSIONS_BROWSER_GRANTED_FILE_ENTRY_H_
[email protected]e3a8ebb92014-03-31 01:54:387
8#include <string>
9
[email protected]ce5f1b32014-06-22 01:46:4510namespace extensions {
[email protected]e3a8ebb92014-03-31 01:54:3811
12// Refers to a file entry that a renderer has been given access to.
13struct GrantedFileEntry {
14 GrantedFileEntry();
15 ~GrantedFileEntry();
16
17 std::string id;
18 std::string filesystem_id;
19 std::string registered_name;
20};
21
[email protected]ce5f1b32014-06-22 01:46:4522} // namespace extensions
[email protected]e3a8ebb92014-03-31 01:54:3823
[email protected]ce5f1b32014-06-22 01:46:4524#endif // EXTENSIONS_BROWSER_GRANTED_FILE_ENTRY_H_