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

Side by Side Diff: third_party/closure_compiler/externs/chrome_extensions.js

Issue 1029803004: Add chrome.fileSystem.GetVolumeList(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed chrome_extensions.js. Created 5 years, 8 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 unified diff | Download patch
OLDNEW
1 // SSSSSSSSSSSSSSS TTTTTTTTTTTTTTTTTTTTTTT OOOOOOOOO PPPPPPPPPPPPPPPP P 1 // SSSSSSSSSSSSSSS TTTTTTTTTTTTTTTTTTTTTTT OOOOOOOOO PPPPPPPPPPPPPPPP P
2 // SS:::::::::::::::ST:::::::::::::::::::::T OO:::::::::OO P::::::::::::::: :P 2 // SS:::::::::::::::ST:::::::::::::::::::::T OO:::::::::OO P::::::::::::::: :P
3 // S:::::SSSSSS::::::ST:::::::::::::::::::::T OO:::::::::::::OO P::::::PPPPPP::: ::P 3 // S:::::SSSSSS::::::ST:::::::::::::::::::::T OO:::::::::::::OO P::::::PPPPPP::: ::P
4 // S:::::S SSSSSSST:::::TT:::::::TT:::::TO:::::::OOO:::::::OPP:::::P P:: :::P 4 // S:::::S SSSSSSST:::::TT:::::::TT:::::TO:::::::OOO:::::::OPP:::::P P:: :::P
5 // S:::::S TTTTTT T:::::T TTTTTTO::::::O O::::::O P::::P P:: :::P 5 // S:::::S TTTTTT T:::::T TTTTTTO::::::O O::::::O P::::P P:: :::P
6 // S:::::S T:::::T O:::::O O:::::O P::::P P:: :::P 6 // S:::::S T:::::T O:::::O O:::::O P::::P P:: :::P
7 // S::::SSSS P::::PPPPPP::: ::P 7 // S::::SSSS P::::PPPPPP::: ::P
8 // SS::::::SSSSS This file is generated. To update it, P::::::::::::: PP 8 // SS::::::SSSSS This file is generated. To update it, P::::::::::::: PP
9 // SSS::::::::SS run bump_compiler_version. P::::PPPPPPPPP 9 // SSS::::::::SS run bump_compiler_version. P::::PPPPPPPPP
10 // SSSSSS::::S P::::P 10 // SSSSSS::::S P::::P
(...skipping 6976 matching lines...) Expand 10 before | Expand all | Expand 10 after
6987 * @typedef {?{ 6987 * @typedef {?{
6988 * volumeId: string, 6988 * volumeId: string,
6989 * writable: (boolean|undefined) 6989 * writable: (boolean|undefined)
6990 * }} 6990 * }}
6991 * @see http://developer.chrome.com/apps/fileSystem.html#method-requestFileSyste m 6991 * @see http://developer.chrome.com/apps/fileSystem.html#method-requestFileSyste m
6992 */ 6992 */
6993 chrome.fileSystem.RequestFileSystemOptions; 6993 chrome.fileSystem.RequestFileSystemOptions;
6994 6994
6995 6995
6996 /** 6996 /**
6997 * @see http://developer.chrome.com/apps/fileSystem.html#method-getVolumeList
6998 * @constructor
6999 */
7000 chrome.fileSystem.Volume = function() {};
7001
7002
7003 /** @type {string} */
7004 chrome.fileSystem.Volume.prototype.volumeId;
7005
7006
7007 /** @type {boolean} */
7008 chrome.fileSystem.Volume.prototype.writable;
7009
7010
7011 /**
6997 * @param {!chrome.fileSystem.ChooseEntryOptions| 7012 * @param {!chrome.fileSystem.ChooseEntryOptions|
6998 * function(Entry=, !Array.<!FileEntry>=)} optionsOrCallback The 7013 * function(Entry=, !Array.<!FileEntry>=)} optionsOrCallback The
6999 * options for the file prompt or the callback. 7014 * options for the file prompt or the callback.
7000 * @param {function(Entry=, !Array.<!FileEntry>=)=} opt_callback A success 7015 * @param {function(Entry=, !Array.<!FileEntry>=)=} opt_callback A success
7001 * callback, if arg1 is options. 7016 * callback, if arg1 is options.
7002 * @see http://developer.chrome.com/apps/fileSystem.html#method-chooseEntry 7017 * @see http://developer.chrome.com/apps/fileSystem.html#method-chooseEntry
7003 */ 7018 */
7004 chrome.fileSystem.chooseEntry = function(optionsOrCallback, opt_callback) {}; 7019 chrome.fileSystem.chooseEntry = function(optionsOrCallback, opt_callback) {};
7005 7020
7006 7021
(...skipping 18 matching lines...) Expand all
7025 * @return {string} The ID that can be passed to restoreEntry to regain access 7040 * @return {string} The ID that can be passed to restoreEntry to regain access
7026 * to the given file entry. 7041 * to the given file entry.
7027 * @see http://developer.chrome.com/apps/fileSystem.html#method-retainEntry 7042 * @see http://developer.chrome.com/apps/fileSystem.html#method-retainEntry
7028 */ 7043 */
7029 chrome.fileSystem.retainEntry = function(entry) {}; 7044 chrome.fileSystem.retainEntry = function(entry) {};
7030 7045
7031 7046
7032 /** 7047 /**
7033 * @param {!chrome.fileSystem.RequestFileSystemOptions} options Options for the 7048 * @param {!chrome.fileSystem.RequestFileSystemOptions} options Options for the
7034 * request. 7049 * request.
7035 * @param {function(!FileSystem=)} callback A completion callback. 7050 * @param {function(FileSystem)} callback A completion callback.
7036 * @see http://developer.chrome.com/apps/fileSystem.html#method-requestFileSyste m 7051 * @see http://developer.chrome.com/apps/fileSystem.html#method-requestFileSyste m
7037 */ 7052 */
7038 chrome.fileSystem.requestFileSystem = function(options, callback) {}; 7053 chrome.fileSystem.requestFileSystem = function(options, callback) {};
7039 7054
7040 7055
7041 /** 7056 /**
7057 * @param {function(Array<!chrome.fileSystem.Volume>)} callback A completion
7058 * callback.
7059 * @see http://developer.chrome.com/apps/fileSystem.html#method-getVolumeList
7060 */
7061 chrome.fileSystem.getVolumeList = function(callback) {};
7062
7063
7064 /**
7042 * @const 7065 * @const
7043 * @see https://developer.chrome.com/apps/syncFileSystem 7066 * @see https://developer.chrome.com/apps/syncFileSystem
7044 */ 7067 */
7045 chrome.syncFileSystem = {}; 7068 chrome.syncFileSystem = {};
7046 7069
7047 7070
7048 /** 7071 /**
7049 * Returns a syncable filesystem backed by Google Drive. The returned 7072 * Returns a syncable filesystem backed by Google Drive. The returned
7050 * DOMFileSystem instance can be operated on in the same way as 7073 * DOMFileSystem instance can be operated on in the same way as
7051 * the Temporary and Persistant file systems (see 7074 * the Temporary and Persistant file systems (see
(...skipping 1955 matching lines...) Expand 10 before | Expand all | Expand 10 after
9007 9030
9008 9031
9009 /** 9032 /**
9010 * Installs the given app ID. 9033 * Installs the given app ID.
9011 * @param {string} id 9034 * @param {string} id
9012 * @param {function(string, string): void=} opt_callback Response callback that 9035 * @param {function(string, string): void=} opt_callback Response callback that
9013 * returns two string: (1) an error string (or empty string on success) and 9036 * returns two string: (1) an error string (or empty string on success) and
9014 * (2) an error code in case of error 9037 * (2) an error code in case of error
9015 */ 9038 */
9016 chrome.inlineInstallPrivate.install = function(id, opt_callback) {}; 9039 chrome.inlineInstallPrivate.install = function(id, opt_callback) {};
OLDNEW
« no previous file with comments | « extensions/browser/extension_function_histogram_value.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698