OLD | NEW |
(Empty) | |
| 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 APPS_BROWSER_FILE_HANDLER_UTIL_H_ |
| 6 #define APPS_BROWSER_FILE_HANDLER_UTIL_H_ |
| 7 |
| 8 #include <string> |
| 9 |
| 10 namespace apps { |
| 11 namespace file_handler_util { |
| 12 |
| 13 // Refers to a file entry that a renderer has been given access to. |
| 14 struct GrantedFileEntry { |
| 15 GrantedFileEntry(); |
| 16 ~GrantedFileEntry(); |
| 17 |
| 18 std::string id; |
| 19 std::string filesystem_id; |
| 20 std::string registered_name; |
| 21 }; |
| 22 |
| 23 } // namespace file_handler_util |
| 24 } // namespace apps |
| 25 |
| 26 #endif // APPS_BROWSER_FILE_HANDLER_UTIL_H_ |
OLD | NEW |