Add an extension override bubble and warning box for proxy extensions. (2nd attempt...
[chromium-blink-merge.git] / apps / browser / file_handler_util.h
blob1d0cfa384e952c57656b8c363b011e934cbe95a9
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.
5 #ifndef APPS_BROWSER_FILE_HANDLER_UTIL_H_
6 #define APPS_BROWSER_FILE_HANDLER_UTIL_H_
8 #include <string>
10 namespace apps {
11 namespace file_handler_util {
13 // Refers to a file entry that a renderer has been given access to.
14 struct GrantedFileEntry {
15 GrantedFileEntry();
16 ~GrantedFileEntry();
18 std::string id;
19 std::string filesystem_id;
20 std::string registered_name;
23 } // namespace file_handler_util
24 } // namespace apps
26 #endif // APPS_BROWSER_FILE_HANDLER_UTIL_H_