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

Unified Diff: chrome/common/extensions/api/extfs.idl

Issue 16439016: extfs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 | « chrome/common/extensions/api/api.gyp ('k') | chrome/common/extensions/permissions/api_permission.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/api/extfs.idl
diff --git a/chrome/common/extensions/api/extfs.idl b/chrome/common/extensions/api/extfs.idl
new file mode 100644
index 0000000000000000000000000000000000000000..1e943533eea1cefe29a5e6ef52432745f841a61c
--- /dev/null
+++ b/chrome/common/extensions/api/extfs.idl
@@ -0,0 +1,21 @@
+// Copyright (c) 2012 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.
+
+namespace extfs {
+ callback BoolCallback = void (boolean result);
+
+ dictionary EntryInfo {
+ boolean isDirectory;
+ DOMString name;
+ };
+
+ interface Functions {
+ static void addMountPoint(DOMString mountName, BoolCallback callback);
+ static void didGetFileInfo(long requestId, EntryInfo entry);
+ };
+
+ interface Events {
+ static void onGetFileInfo(long requestId, DOMString path);
+ };
+};
« no previous file with comments | « chrome/common/extensions/api/api.gyp ('k') | chrome/common/extensions/permissions/api_permission.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698