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

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

Issue 1049483003: [Extensions] Update extensions UI to observe events and add test (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 // 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
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
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;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698