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

Side by Side Diff: chrome/common/extensions/api/developer_private.idl

Issue 958803004: [Extensions] Make chrome://extensions use developerPrivate for packing crxs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // developerPrivate API. 5 // developerPrivate API.
6 // This is a private API exposing developing and debugging functionalities for 6 // This is a private API exposing developing and debugging functionalities for
7 // apps and extensions. 7 // apps and extensions.
8 namespace developerPrivate { 8 namespace developerPrivate {
9 9
10 enum ItemType { 10 enum ItemType {
11 hosted_app, 11 hosted_app,
12 packaged_app, 12 packaged_app,
13 legacy_packaged_app, 13 legacy_packaged_app,
14 extension, 14 extension,
15 theme 15 theme
16 }; 16 };
17 17
18 dictionary ReloadOptions {
Devlin 2015/02/27 02:16:04 ignore this (rebasing issue).
Dan Beam 2015/02/27 19:57:51 fix before you CQ...
Devlin 2015/02/27 21:37:03 Done.
19 boolean? failQuietly;
20 };
21
22 dictionary ItemInspectView { 18 dictionary ItemInspectView {
23 // path to the inspect page. 19 // path to the inspect page.
24 DOMString path; 20 DOMString path;
25 21
26 // For lazy background pages, the value is -1. 22 // For lazy background pages, the value is -1.
27 long render_process_id; 23 long render_process_id;
28 24
29 long render_view_id; 25 long render_view_id;
30 boolean incognito; 26 boolean incognito;
31 boolean generatedBackgroundPage; 27 boolean generatedBackgroundPage;
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 // Open the developer tools to focus on a particular error. 285 // Open the developer tools to focus on a particular error.
290 static void openDevTools(OpenDevToolsProperties properties); 286 static void openDevTools(OpenDevToolsProperties properties);
291 }; 287 };
292 288
293 interface Events { 289 interface Events {
294 // Fired when a item state is changed. 290 // Fired when a item state is changed.
295 static void onItemStateChanged(EventData response); 291 static void onItemStateChanged(EventData response);
296 }; 292 };
297 293
298 }; 294 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698