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

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

Issue 1679983003: Set wallpaper from right click menu in Files app. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add todo Created 4 years, 10 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 roll_closure_compiler. P::::PPPPPPPPP 9 // SSS::::::::SS run roll_closure_compiler. P::::PPPPPPPPP
10 // SSSSSS::::S P::::P 10 // SSSSSS::::S P::::P
(...skipping 9141 matching lines...) Expand 10 before | Expand all | Expand 10 after
9152 9152
9153 9153
9154 /** 9154 /**
9155 * Installs the given app ID. 9155 * Installs the given app ID.
9156 * @param {string} id 9156 * @param {string} id
9157 * @param {function(string, string): void=} opt_callback Response callback that 9157 * @param {function(string, string): void=} opt_callback Response callback that
9158 * returns two string: (1) an error string (or empty string on success) and 9158 * returns two string: (1) an error string (or empty string on success) and
9159 * (2) an error code in case of error 9159 * (2) an error code in case of error
9160 */ 9160 */
9161 chrome.inlineInstallPrivate.install = function(id, opt_callback) {}; 9161 chrome.inlineInstallPrivate.install = function(id, opt_callback) {};
9162
Devlin 2016/02/17 18:19:36 We should instead be generating this from the json
ryoh 2016/02/19 05:31:27 IIRC, this file is generated from the file hosted
Devlin 2016/02/19 17:31:53 The closure compiler isn't automatically rolled -
9163 /**
9164 * @const
9165 * @see https://goo.gl/7dvJFW
9166 */
9167 //TODO(ryoh): this entry will be removed when closure compiler rolled up.
9168 chrome.wallpaper = {};
9169
9170 /**
9171 * Sets wallpaper to the image at url or wallpaperData with the specified
9172 * layout.
9173 * @param {{
9174 * data: ArrayBuffer,
9175 * url: (string|undefined),
9176 * layout: string,
9177 * filename: string,
9178 * thumbnail: (boolean|undefined)
9179 * }} details
9180 * @param {function(ArrayBuffer=)} callback
9181 *
9182 */
9183 //TODO(ryoh): this entry will be removed when closure compiler rolled up.
9184 chrome.wallpaper.setWallpaper;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698