Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright 2009 The Closure Compiler Authors | 2 * Copyright 2009 The Closure Compiler Authors |
| 3 * | 3 * |
| 4 * Licensed under the Apache License, Version 2.0 (the "License"); | 4 * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 * you may not use this file except in compliance with the License. | 5 * you may not use this file except in compliance with the License. |
| 6 * You may obtain a copy of the License at | 6 * You may obtain a copy of the License at |
| 7 * | 7 * |
| 8 * http://www.apache.org/licenses/LICENSE-2.0 | 8 * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 * | 9 * |
| 10 * Unless required by applicable law or agreed to in writing, software | 10 * Unless required by applicable law or agreed to in writing, software |
| (...skipping 5248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 5259 | 5259 |
| 5260 | 5260 |
| 5261 /** @type {string} */ | 5261 /** @type {string} */ |
| 5262 ChromeKeyboardEvent.prototype.requestId; | 5262 ChromeKeyboardEvent.prototype.requestId; |
| 5263 | 5263 |
| 5264 | 5264 |
| 5265 /** @type {string} */ | 5265 /** @type {string} */ |
| 5266 ChromeKeyboardEvent.prototype.key; | 5266 ChromeKeyboardEvent.prototype.key; |
| 5267 | 5267 |
| 5268 | 5268 |
| 5269 /** @type {string} */ | |
| 5270 ChromeKeyboardEvent.prototype.code; | |
|
Dan Beam
2014/10/17 22:08:44
I don't see this in the internal version of this f
| |
| 5271 | |
| 5272 | |
| 5269 /** @type {boolean} */ | 5273 /** @type {boolean} */ |
| 5270 ChromeKeyboardEvent.prototype.altKey; | 5274 ChromeKeyboardEvent.prototype.altKey; |
| 5271 | 5275 |
| 5272 | 5276 |
| 5273 /** @type {boolean} */ | 5277 /** @type {boolean} */ |
| 5274 ChromeKeyboardEvent.prototype.ctrlKey; | 5278 ChromeKeyboardEvent.prototype.ctrlKey; |
| 5275 | 5279 |
| 5276 | 5280 |
| 5277 /** @type {boolean} */ | 5281 /** @type {boolean} */ |
| 5278 ChromeKeyboardEvent.prototype.shiftKey; | 5282 ChromeKeyboardEvent.prototype.shiftKey; |
| 5279 | 5283 |
| 5280 | 5284 |
| 5285 /** @type {boolean} */ | |
| 5286 ChromeKeyboardEvent.prototype.capsLock; | |
| 5287 | |
| 5288 | |
| 5281 | 5289 |
| 5282 /** | 5290 /** |
| 5283 * @see https://developer.chrome.com/extensions/input.ime.html#type-InputContext | 5291 * @see https://developer.chrome.com/extensions/input.ime.html#type-InputContext |
| 5284 * @constructor | 5292 * @constructor |
| 5285 */ | 5293 */ |
| 5286 function InputContext() {} | 5294 function InputContext() {} |
| 5287 | 5295 |
| 5288 | 5296 |
| 5289 /** @type {number} */ | 5297 /** @type {number} */ |
| 5290 InputContext.prototype.contextID; | 5298 InputContext.prototype.contextID; |
| (...skipping 2049 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 7340 function(callback) {}; | 7348 function(callback) {}; |
| 7341 | 7349 |
| 7342 | 7350 |
| 7343 /** @return {boolean} */ | 7351 /** @return {boolean} */ |
| 7344 chrome.bluetoothPrivate.PairingEventEvent.prototype.hasListeners = | 7352 chrome.bluetoothPrivate.PairingEventEvent.prototype.hasListeners = |
| 7345 function() {}; | 7353 function() {}; |
| 7346 | 7354 |
| 7347 | 7355 |
| 7348 /** @type {!chrome.bluetoothPrivate.PairingEventEvent} */ | 7356 /** @type {!chrome.bluetoothPrivate.PairingEventEvent} */ |
| 7349 chrome.bluetoothPrivate.onPairing; | 7357 chrome.bluetoothPrivate.onPairing; |
| OLD | NEW |