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 // DEPRECATED: Prefer ExtensionType. | 10 // DEPRECATED: Prefer ExtensionType. |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
146 DOMString url; | 146 DOMString url; |
147 long renderProcessId; | 147 long renderProcessId; |
148 long renderViewId; | 148 long renderViewId; |
149 boolean incognito; | 149 boolean incognito; |
150 ViewType type; | 150 ViewType type; |
151 }; | 151 }; |
152 | 152 |
153 dictionary ExtensionInfo { | 153 dictionary ExtensionInfo { |
154 boolean actionButtonHidden; | 154 boolean actionButtonHidden; |
155 DOMString? blacklistText; | 155 DOMString? blacklistText; |
156 DOMString? controlledBy; // see controlled_indicator.css | |
Devlin
2015/05/19 16:17:16
This should really be an enum. It will mean an ex
Devlin
2015/05/19 16:17:16
These changes will need to be reflected in the ext
Devlin
2015/05/19 16:17:16
These can, and probably should, be grouped togethe
Marc Treib
2015/05/20 11:22:41
Done.
Marc Treib
2015/05/20 11:22:41
Done.
Marc Treib
2015/05/20 11:22:41
Done (I think).
| |
157 DOMString? controlledByText; | |
156 DOMString[] dependentExtensions; | 158 DOMString[] dependentExtensions; |
157 DOMString description; | 159 DOMString description; |
158 DisableReasons disableReasons; | 160 DisableReasons disableReasons; |
159 AccessModifier errorCollection; | 161 AccessModifier errorCollection; |
160 AccessModifier fileAccess; | 162 AccessModifier fileAccess; |
161 HomePage homePage; | 163 HomePage homePage; |
162 DOMString iconUrl; | 164 DOMString iconUrl; |
163 DOMString id; | 165 DOMString id; |
164 AccessModifier incognitoAccess; | 166 AccessModifier incognitoAccess; |
165 boolean installedByCustodian; | |
166 DOMString[] installWarnings; | 167 DOMString[] installWarnings; |
167 DOMString? launchUrl; | 168 DOMString? launchUrl; |
168 Location location; | 169 Location location; |
169 DOMString? locationText; | 170 DOMString? locationText; |
170 ManifestError[] manifestErrors; | 171 ManifestError[] manifestErrors; |
171 boolean mustRemainInstalled; | 172 boolean mustRemainInstalled; |
172 DOMString name; | 173 DOMString name; |
173 boolean offlineEnabled; | 174 boolean offlineEnabled; |
174 OptionsPage? optionsPage; | 175 OptionsPage? optionsPage; |
175 DOMString? path; | 176 DOMString? path; |
176 DOMString? policyText; | |
177 DOMString? prettifiedPath; | 177 DOMString? prettifiedPath; |
178 AccessModifier runOnAllUrls; | 178 AccessModifier runOnAllUrls; |
179 RuntimeError[] runtimeErrors; | 179 RuntimeError[] runtimeErrors; |
180 DOMString[] runtimeWarnings; | 180 DOMString[] runtimeWarnings; |
181 ExtensionState state; | 181 ExtensionState state; |
182 ExtensionType type; | 182 ExtensionType type; |
183 DOMString updateUrl; | 183 DOMString updateUrl; |
184 boolean userMayModify; | 184 boolean userMayModify; |
185 DOMString version; | 185 DOMString version; |
186 ExtensionView[] views; | 186 ExtensionView[] views; |
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
532 static void inspect(InspectOptions options, | 532 static void inspect(InspectOptions options, |
533 optional VoidCallback callback); | 533 optional VoidCallback callback); |
534 }; | 534 }; |
535 | 535 |
536 interface Events { | 536 interface Events { |
537 // Fired when a item state is changed. | 537 // Fired when a item state is changed. |
538 static void onItemStateChanged(EventData response); | 538 static void onItemStateChanged(EventData response); |
539 }; | 539 }; |
540 | 540 |
541 }; | 541 }; |
OLD | NEW |