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

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: update the annotation file with generated signatures 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
Dan Beam 2016/02/24 19:12:51 how can I make this bigger, exactly?
Dan Beam 2016/02/24 19:25:10 fwiw: i found cl/115298731 but it differs from wha
10 // SSSSSS::::S P::::P 10 // SSSSSS::::S P::::P
11 // S:::::S T:::::T O:::::O O:::::O P::::P 11 // S:::::S T:::::T O:::::O O:::::O P::::P
12 // S:::::S T:::::T O::::::O O::::::O P::::P 12 // S:::::S T:::::T O::::::O O::::::O P::::P
13 // SSSSSSS S:::::S TT:::::::TT O:::::::OOO:::::::OPP::::::PP 13 // SSSSSSS S:::::S TT:::::::TT O:::::::OOO:::::::OPP::::::PP
14 // S::::::SSSSSS:::::S T:::::::::T OO:::::::::::::OO P::::::::P 14 // S::::::SSSSSS:::::S T:::::::::T OO:::::::::::::OO P::::::::P
15 // S:::::::::::::::SS T:::::::::T OO:::::::::OO P::::::::P 15 // S:::::::::::::::SS T:::::::::T OO:::::::::OO P::::::::P
16 // SSSSSSSSSSSSSSS TTTTTTTTTTT OOOOOOOOO PPPPPPPPPP 16 // SSSSSSSSSSSSSSS TTTTTTTTTTT OOOOOOOOO PPPPPPPPPP
17 /* 17 /*
18 * Copyright 2009 The Closure Compiler Authors 18 * Copyright 2009 The Closure Compiler Authors
19 * 19 *
(...skipping 9132 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
9163 /** @fileoverview Externs generated from namespace: wallpaper */
9164
9165 /**
9166 * @const
ewa 2016/02/23 22:15:47 I was thinking there should be an @see link to the
9167 */
9168 chrome.wallpaper = {};
9169
9170 /**
9171 * @enum {string}
9172 * @see https://developer.chrome.com/extensions/wallpaper#type-WallpaperLayout
9173 */
9174 chrome.wallpaper.WallpaperLayout = {
9175 STRETCH: 'STRETCH',
9176 CENTER: 'CENTER',
9177 CENTER_CROPPED: 'CENTER_CROPPED',
9178 };
ewa 2016/02/23 22:15:47 The docs mention the chrome.wallpaper.WallpaperLay
Devlin 2016/02/23 23:19:18 Yes, the docs should be updated to indicate this.
ewa 2016/02/24 01:56:33 Ok, I think we're making different points. For a
Devlin 2016/02/24 04:38:49 I would say that anyone consuming *new* externs (w
9179
9180 /**
9181 * Sets wallpaper to the image at <em>url</em> or <em>wallpaperData</em> with
9182 * the specified <em>layout</em>
ewa 2016/02/23 22:15:47 No need for HTML markup in this comment. In this
Devlin 2016/02/23 23:19:18 Agreed, it'd be good to not have the markup in the
9183 * @param {{
9184 * data: (!ArrayBuffer|undefined),
9185 * url: (string|undefined),
9186 * layout: !chrome.wallpaper.WallpaperLayout,
9187 * filename: string,
9188 * thumbnail: (boolean|undefined)
9189 * }} details
9190 * @param {function(?):void} callback
ewa 2016/02/23 22:15:47 The callback's param should be an ArrayBuffer.
9191 * @see https://developer.chrome.com/extensions/wallpaper#method-setWallpaper
9192 */
9193 chrome.wallpaper.setWallpaper = function(details, callback) {};
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698