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

Unified Diff: third_party/closure_compiler/externs/chrome_extensions.js

Issue 985533004: Implement chrome.fileSystem.requestFileSystem(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed kiosk mode. Created 5 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
Index: third_party/closure_compiler/externs/chrome_extensions.js
diff --git a/third_party/closure_compiler/externs/chrome_extensions.js b/third_party/closure_compiler/externs/chrome_extensions.js
index a4f9c4831f8184b5d5ac98e0e06e5f81e4d0b7ad..0dc3411fd0c45b98e4af98e7435e1cc6914980a8 100644
--- a/third_party/closure_compiler/externs/chrome_extensions.js
+++ b/third_party/closure_compiler/externs/chrome_extensions.js
@@ -6827,6 +6827,16 @@ chrome.fileSystem.ChooseEntryOptions;
/**
+ * @typedef {?{
+ * volumeId: string,
+ * writable: (boolean|undefined)
+ * }}
+ * @see http://developer.chrome.com/apps/fileSystem.html#method-requestFileSystem
+ */
+chrome.fileSystem.RequestFileSystemOptions;
Dan Beam 2015/03/25 23:00:19 this is a generated file, changes to it will be lo
+
+
+/**
* @param {!chrome.fileSystem.ChooseEntryOptions|
* function(Entry=, !Array.<!FileEntry>=)} optionsOrCallback The
* options for the file prompt or the callback.
@@ -6863,6 +6873,15 @@ chrome.fileSystem.retainEntry = function(entry) {};
/**
+ * @param {!chrome.fileSystem.RequestFileSystemOptions} options Options for the
+ * request.
+ * @param {!function(FileSystem)} callback A completion callback.
+ * @see http://developer.chrome.com/apps/fileSystem.html#method-requestFileSystem
+ */
+chrome.fileSystem.requestFileSystem = function(options, callback) {};
+
+
+/**
* @const
* @see https://developer.chrome.com/apps/syncFileSystem
*/
« no previous file with comments | « extensions/browser/extension_function_histogram_value.h ('k') | third_party/closure_compiler/externs/file_manager_private.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698