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

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

Issue 2180623002: Roll closure compiler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix newly uncovered compilation error. Created 4 years, 4 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 9323 matching lines...) Expand 10 before | Expand all | Expand 10 after
9334 /** 9334 /**
9335 * Fires when a given device disappears. 9335 * Fires when a given device disappears.
9336 * |deviceId| The device that has disappeared. 9336 * |deviceId| The device that has disappeared.
9337 * @type {!ChromeStringEvent} 9337 * @type {!ChromeStringEvent}
9338 */ 9338 */
9339 chrome.gcdPrivate.onDeviceRemoved; 9339 chrome.gcdPrivate.onDeviceRemoved;
9340 9340
9341 9341
9342 /** 9342 /**
9343 * @const 9343 * @const
9344 * @see http://goo.gl/bKHibo 9344 * @see https://cs.chromium.org/chromium/src/extensions/common/api/bluetooth_pri vate.idl
9345 */ 9345 */
9346 chrome.bluetoothPrivate = {}; 9346 chrome.bluetoothPrivate = {};
9347 9347
9348 9348
9349 9349
9350 /** @constructor */ 9350 /** @constructor */
9351 chrome.bluetoothPrivate.PairingEvent = function() {}; 9351 chrome.bluetoothPrivate.PairingEvent = function() {};
9352 9352
9353 9353
9354 /** @type {string} */ 9354 /** @type {string} */
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
9435 9435
9436 /** @return {boolean} */ 9436 /** @return {boolean} */
9437 chrome.bluetoothPrivate.PairingEventEvent.prototype.hasListeners = 9437 chrome.bluetoothPrivate.PairingEventEvent.prototype.hasListeners =
9438 function() {}; 9438 function() {};
9439 9439
9440 9440
9441 /** @type {!chrome.bluetoothPrivate.PairingEventEvent} */ 9441 /** @type {!chrome.bluetoothPrivate.PairingEventEvent} */
9442 chrome.bluetoothPrivate.onPairing; 9442 chrome.bluetoothPrivate.onPairing;
9443 9443
9444 9444
9445 /**
9446 * @param {string} deviceAddress
9447 * @param {function(number, string): void=} opt_callback
9448 */
9449 chrome.bluetoothPrivate.pair = function(deviceAddress, opt_callback) {};
9450
9451
9452 /**
9453 * @enum {string}
9454 * @see https://developer.chrome.com/extensions/bluetoothPrivate#type-PairingRes ponse
9455 */
9456 chrome.bluetoothPrivate.PairingResponse = {
9457 CONFIRM: '',
9458 REJECT: '',
9459 CANCEL: '',
9460 };
9461
9462
9463 /**
9464 * @enum {string}
9465 * @see https://developer.chrome.com/extensions/bluetoothPrivate#type-PairingEve ntType
9466 */
9467 chrome.bluetoothPrivate.PairingEventType = {
9468 REQUEST_PINCODE: '',
9469 DISPLAY_PINCODE: '',
9470 REQUEST_PASSKEY: '',
9471 DISPLAY_PASSKEY: '',
9472 KEYS_ENTERED: '',
9473 CONFIRM_PASSKEY: '',
9474 REQUEST_AUTHORIZATION: '',
9475 COMPLETE: '',
9476 };
9477
9478
9479 /**
9480 * @enum {string}
9481 * @see https://developer.chrome.com/extensions/bluetoothPrivate#type-ConnectRes ultType
9482 */
9483 chrome.bluetoothPrivate.ConnectResultType = {
9484 ALREADY_CONNECTED: '',
9485 ATTRIBUTE_LENGTH_INVALID: '',
9486 AUTH_CANCELED: '',
9487 AUTH_FAILED: '',
9488 AUTH_REJECTED: '',
9489 AUTH_TIMEOUT: '',
9490 CONNECTION_CONGESTED: '',
9491 FAILED: '',
9492 IN_PROGRESS: '',
9493 INSUFFICIENT_ENCRYPTION: '',
9494 OFFSET_INVALID: '',
9495 READ_NOT_PERMITTED: '',
9496 REQUEST_NOT_SUPPORTED: '',
9497 SUCCESS: '',
9498 UNKNOWN_ERROR: '',
9499 UNSUPPORTED_DEVICE: '',
9500 WRITE_NOT_PERMITTED: '',
9501 };
9502
9503
9504 /**
9505 * @enum {string}
9506 * @see https://developer.chrome.com/extensions/bluetoothPrivate#type-TransportT ype
9507 */
9508 chrome.bluetoothPrivate.TransportType = {
9509 LE: '',
9510 BREDR: '',
9511 DUAL: '',
9512 };
9513
9445 9514
9446 /** 9515 /**
9447 * @const 9516 * @const
9448 * @see http://goo.gl/XmVdHm 9517 * @see http://goo.gl/XmVdHm
9449 */ 9518 */
9450 chrome.inlineInstallPrivate = {}; 9519 chrome.inlineInstallPrivate = {};
9451 9520
9452 9521
9453 /** 9522 /**
9454 * Installs the given app ID. 9523 * Installs the given app ID.
(...skipping 30 matching lines...) Expand all
9485 * data: (ArrayBuffer|undefined), 9554 * data: (ArrayBuffer|undefined),
9486 * url: (string|undefined), 9555 * url: (string|undefined),
9487 * layout: (chrome.wallpaper.WallpaperLayout|string), 9556 * layout: (chrome.wallpaper.WallpaperLayout|string),
9488 * filename: string, 9557 * filename: string,
9489 * thumbnail: (boolean|undefined) 9558 * thumbnail: (boolean|undefined)
9490 * }} details 9559 * }} details
9491 * @param {function(ArrayBuffer=)} callback 9560 * @param {function(ArrayBuffer=)} callback
9492 * @see https://goo.gl/7dvJFW#method-setWallpaper 9561 * @see https://goo.gl/7dvJFW#method-setWallpaper
9493 */ 9562 */
9494 chrome.wallpaper.setWallpaper = function(details, callback) {}; 9563 chrome.wallpaper.setWallpaper = function(details, callback) {};
OLDNEW
« no previous file with comments | « third_party/closure_compiler/compiler/compiler.jar ('k') | third_party/closure_compiler/runner/runner.jar » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698