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

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

Issue 989843002: [Extensions] Make chrome://extensions use developerPrivate for inspect (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « chrome/common/extensions/api/developer_private.idl ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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;
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/developer_private.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698