• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
5 #ifndef EXTENSIONS_BROWSER_GRANTED_FILE_ENTRY_H_
6 #define EXTENSIONS_BROWSER_GRANTED_FILE_ENTRY_H_
7 
8 #include <string>
9 
10 namespace extensions {
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 
22 }  // namespace extensions
23 
24 #endif  // EXTENSIONS_BROWSER_GRANTED_FILE_ENTRY_H_
25