Index: apps/browser/file_handler_util.h |
diff --git a/apps/browser/file_handler_util.h b/apps/browser/file_handler_util.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1d0cfa384e952c57656b8c363b011e934cbe95a9 |
--- /dev/null |
+++ b/apps/browser/file_handler_util.h |
@@ -0,0 +1,26 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef APPS_BROWSER_FILE_HANDLER_UTIL_H_ |
+#define APPS_BROWSER_FILE_HANDLER_UTIL_H_ |
+ |
+#include <string> |
+ |
+namespace apps { |
+namespace file_handler_util { |
+ |
+// Refers to a file entry that a renderer has been given access to. |
+struct GrantedFileEntry { |
+ GrantedFileEntry(); |
+ ~GrantedFileEntry(); |
+ |
+ std::string id; |
+ std::string filesystem_id; |
+ std::string registered_name; |
+}; |
+ |
+} // namespace file_handler_util |
+} // namespace apps |
+ |
+#endif // APPS_BROWSER_FILE_HANDLER_UTIL_H_ |