[email protected] | e3a8ebb9 | 2014-03-31 01:54:38 | [diff] [blame] | 1 | // 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] | ce5f1b3 | 2014-06-22 01:46:45 | [diff] [blame] | 5 | #ifndef EXTENSIONS_BROWSER_GRANTED_FILE_ENTRY_H_ |
6 | #define EXTENSIONS_BROWSER_GRANTED_FILE_ENTRY_H_ | ||||
[email protected] | e3a8ebb9 | 2014-03-31 01:54:38 | [diff] [blame] | 7 | |
8 | #include <string> | ||||
9 | |||||
[email protected] | ce5f1b3 | 2014-06-22 01:46:45 | [diff] [blame] | 10 | namespace extensions { |
[email protected] | e3a8ebb9 | 2014-03-31 01:54:38 | [diff] [blame] | 11 | |
12 | // Refers to a file entry that a renderer has been given access to. | ||||
13 | struct GrantedFileEntry { | ||||
14 | GrantedFileEntry(); | ||||
15 | ~GrantedFileEntry(); | ||||
16 | |||||
17 | std::string id; | ||||
18 | std::string filesystem_id; | ||||
19 | std::string registered_name; | ||||
20 | }; | ||||
21 | |||||
[email protected] | ce5f1b3 | 2014-06-22 01:46:45 | [diff] [blame] | 22 | } // namespace extensions |
[email protected] | e3a8ebb9 | 2014-03-31 01:54:38 | [diff] [blame] | 23 | |
[email protected] | ce5f1b3 | 2014-06-22 01:46:45 | [diff] [blame] | 24 | #endif // EXTENSIONS_BROWSER_GRANTED_FILE_ENTRY_H_ |