OLD | NEW |
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 { |
(...skipping 10 matching lines...) Expand all Loading... |
21 | 21 |
22 // For lazy background pages, the value is -1. | 22 // For lazy background pages, the value is -1. |
23 long render_process_id; | 23 long render_process_id; |
24 | 24 |
25 long render_view_id; | 25 long render_view_id; |
26 boolean incognito; | 26 boolean incognito; |
27 boolean generatedBackgroundPage; | 27 boolean generatedBackgroundPage; |
28 }; | 28 }; |
29 | 29 |
30 dictionary InstallWarning { | 30 dictionary InstallWarning { |
31 boolean is_html; | |
32 DOMString message; | 31 DOMString message; |
33 }; | 32 }; |
34 | 33 |
35 dictionary ItemInfo { | 34 dictionary ItemInfo { |
36 DOMString id; | 35 DOMString id; |
37 DOMString name; | 36 DOMString name; |
38 DOMString version; | 37 DOMString version; |
39 DOMString description; | 38 DOMString description; |
40 boolean may_disable; | 39 boolean may_disable; |
41 boolean enabled; | 40 boolean enabled; |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 // translated string to use in the apps_debugger app UI. | 208 // translated string to use in the apps_debugger app UI. |
210 static void getStrings(GetStringsCallback callback); | 209 static void getStrings(GetStringsCallback callback); |
211 }; | 210 }; |
212 | 211 |
213 interface Events { | 212 interface Events { |
214 // Fired when a item state is changed. | 213 // Fired when a item state is changed. |
215 static void onItemStateChanged(EventData response); | 214 static void onItemStateChanged(EventData response); |
216 }; | 215 }; |
217 | 216 |
218 }; | 217 }; |
OLD | NEW |