Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1853)

Unified Diff: apps/browser/file_handler_util.h

Issue 217533006: Introduce apps API target in //apps and move app.runtime API into it (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix dependencies (app-runtime-move) Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « apps/browser/api/app_runtime/app_runtime_api.cc ('k') | apps/browser/file_handler_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « apps/browser/api/app_runtime/app_runtime_api.cc ('k') | apps/browser/file_handler_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698