Chromium Code Reviews| 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 // Note: hand-modified to change Array to !Array in ItemInfo typedef, and add | 7 // Note: hand-modified to change Array to !Array in ItemInfo typedef, and add |
| 8 // enum definitions. | 8 // enum definitions. |
| 9 | 9 |
| 10 /** | 10 /** |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 60 * runtime_errors: !Array, | 60 * runtime_errors: !Array, |
| 61 * offline_enabled: boolean, | 61 * offline_enabled: boolean, |
| 62 * views: !Array | 62 * views: !Array |
| 63 * }} | 63 * }} |
| 64 */ | 64 */ |
| 65 var ItemInfo; | 65 var ItemInfo; |
| 66 | 66 |
| 67 /** | 67 /** |
| 68 * @typedef {{ | 68 * @typedef {{ |
| 69 * extension_id: string, | 69 * extension_id: string, |
| 70 * render_process_id: string, | 70 * render_process_id: (string|number), |
| 71 * render_view_id: string, | 71 * render_view_id: (string|number), |
|
Dan Beam
2015/03/09 22:23:51
btw, we should probably update the internal copy a
| |
| 72 * incognito: boolean | 72 * incognito: boolean |
| 73 * }} | 73 * }} |
| 74 */ | 74 */ |
| 75 var InspectOptions; | 75 var InspectOptions; |
| 76 | 76 |
| 77 /** | 77 /** |
| 78 * @typedef {{ | 78 * @typedef {{ |
| 79 * failQuietly: (boolean|undefined) | 79 * failQuietly: (boolean|undefined) |
| 80 * }} | 80 * }} |
| 81 */ | 81 */ |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 307 chrome.developerPrivate.requestFileSource = function(properties, callback) {}; | 307 chrome.developerPrivate.requestFileSource = function(properties, callback) {}; |
| 308 | 308 |
| 309 /** | 309 /** |
| 310 * Open the developer tools to focus on a particular error. | 310 * Open the developer tools to focus on a particular error. |
| 311 * @param {OpenDevToolsProperties} properties | 311 * @param {OpenDevToolsProperties} properties |
| 312 */ | 312 */ |
| 313 chrome.developerPrivate.openDevTools = function(properties) {}; | 313 chrome.developerPrivate.openDevTools = function(properties) {}; |
| 314 | 314 |
| 315 /** @type {!ChromeEvent} */ | 315 /** @type {!ChromeEvent} */ |
| 316 chrome.developerPrivate.onItemStateChanged; | 316 chrome.developerPrivate.onItemStateChanged; |
| OLD | NEW |