| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 /** @fileoverview Externs generated from namespace: developerPrivate */ | 5 /** @fileoverview Externs generated from namespace: developerPrivate */ |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * @const | 8 * @const |
| 9 */ | 9 */ |
| 10 chrome.developerPrivate = {}; | 10 chrome.developerPrivate = {}; |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 /** | 354 /** |
| 355 * @typedef {{ | 355 * @typedef {{ |
| 356 * name: string | 356 * name: string |
| 357 * }} | 357 * }} |
| 358 */ | 358 */ |
| 359 var ProjectInfo; | 359 var ProjectInfo; |
| 360 | 360 |
| 361 /** | 361 /** |
| 362 * @typedef {{ | 362 * @typedef {{ |
| 363 * event_type: !chrome.developerPrivate.EventType, | 363 * event_type: !chrome.developerPrivate.EventType, |
| 364 * item_id: string | 364 * item_id: string, |
| 365 * extensionInfo: (ExtensionInfo|undefined) |
| 365 * }} | 366 * }} |
| 366 */ | 367 */ |
| 367 var EventData; | 368 var EventData; |
| 368 | 369 |
| 369 /** | 370 /** |
| 370 * @typedef {{ | 371 * @typedef {{ |
| 371 * extensionId: string, | 372 * extensionId: string, |
| 372 * pathSuffix: string, | 373 * pathSuffix: string, |
| 373 * message: string, | 374 * message: string, |
| 374 * manifestKey: (string|undefined), | 375 * manifestKey: (string|undefined), |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 556 | 557 |
| 557 /** | 558 /** |
| 558 * @param {InspectOptions} options | 559 * @param {InspectOptions} options |
| 559 * @param {function():void=} callback | 560 * @param {function():void=} callback |
| 560 * @deprecated Use openDevTools | 561 * @deprecated Use openDevTools |
| 561 */ | 562 */ |
| 562 chrome.developerPrivate.inspect = function(options, callback) {}; | 563 chrome.developerPrivate.inspect = function(options, callback) {}; |
| 563 | 564 |
| 564 /** @type {!ChromeEvent} */ | 565 /** @type {!ChromeEvent} */ |
| 565 chrome.developerPrivate.onItemStateChanged; | 566 chrome.developerPrivate.onItemStateChanged; |
| OLD | NEW |