summaryrefslogtreecommitdiffstats
path: root/extensions/browser/granted_file_entry.h
diff options
context:
space:
mode:
authorderat@chromium.org <derat@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-22 01:46:45 +0000
committerderat@chromium.org <derat@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-22 01:46:45 +0000
commitce5f1b3c69e446821b24f6641cd987051a491d37 (patch)
treedf5589040e5519d89271c5ab59cac76e49b1d24b /extensions/browser/granted_file_entry.h
parentbd35d3aca169d194661f263bfb50b84b593de52b (diff)
downloadchromium_src-ce5f1b3c69e446821b24f6641cd987051a491d37.zip
chromium_src-ce5f1b3c69e446821b24f6641cd987051a491d37.tar.gz
chromium_src-ce5f1b3c69e446821b24f6641cd987051a491d37.tar.bz2
extensions: Move app.runtime API from apps to extensions.
Also move GrantedFileEntry into extensions. BUG=373821 TBR=miket@chromium.org,brettw@chromium.org Review URL: https://codereview.chromium.org/348453002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278994 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'extensions/browser/granted_file_entry.h')
-rw-r--r--extensions/browser/granted_file_entry.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/extensions/browser/granted_file_entry.h b/extensions/browser/granted_file_entry.h
new file mode 100644
index 0000000..97755ba
--- /dev/null
+++ b/extensions/browser/granted_file_entry.h
@@ -0,0 +1,24 @@
+// 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 EXTENSIONS_BROWSER_GRANTED_FILE_ENTRY_H_
+#define EXTENSIONS_BROWSER_GRANTED_FILE_ENTRY_H_
+
+#include <string>
+
+namespace extensions {
+
+// 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 extensions
+
+#endif // EXTENSIONS_BROWSER_GRANTED_FILE_ENTRY_H_