granted_file_entry.h 610 B

123456789101112131415161718192021222324
  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. #ifndef EXTENSIONS_BROWSER_GRANTED_FILE_ENTRY_H_
  5. #define EXTENSIONS_BROWSER_GRANTED_FILE_ENTRY_H_
  6. #include <string>
  7. namespace extensions {
  8. // Refers to a file entry that a renderer has been given access to.
  9. struct GrantedFileEntry {
  10. GrantedFileEntry();
  11. ~GrantedFileEntry();
  12. std::string id;
  13. std::string filesystem_id;
  14. std::string registered_name;
  15. };
  16. } // namespace extensions
  17. #endif // EXTENSIONS_BROWSER_GRANTED_FILE_ENTRY_H_