| 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 CommandScope scope; | 179 CommandScope scope; |
| 180 boolean isExtensionAction; | 180 boolean isExtensionAction; |
| 181 }; | 181 }; |
| 182 | 182 |
| 183 dictionary DependentExtension { | 183 dictionary DependentExtension { |
| 184 DOMString id; | 184 DOMString id; |
| 185 DOMString name; | 185 DOMString name; |
| 186 }; | 186 }; |
| 187 | 187 |
| 188 dictionary ExtensionInfo { | 188 dictionary ExtensionInfo { |
| 189 boolean actionButtonHidden; | |
| 190 DOMString? blacklistText; | 189 DOMString? blacklistText; |
| 191 Command[] commands; | 190 Command[] commands; |
| 192 ControlledInfo? controlledInfo; | 191 ControlledInfo? controlledInfo; |
| 193 DependentExtension[] dependentExtensions; | 192 DependentExtension[] dependentExtensions; |
| 194 DOMString description; | 193 DOMString description; |
| 195 DisableReasons disableReasons; | 194 DisableReasons disableReasons; |
| 196 AccessModifier errorCollection; | 195 AccessModifier errorCollection; |
| 197 AccessModifier fileAccess; | 196 AccessModifier fileAccess; |
| 198 HomePage homePage; | 197 HomePage homePage; |
| 199 DOMString iconUrl; | 198 DOMString iconUrl; |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 boolean? includeDisabled; | 271 boolean? includeDisabled; |
| 273 boolean? includeTerminated; | 272 boolean? includeTerminated; |
| 274 }; | 273 }; |
| 275 | 274 |
| 276 dictionary ExtensionConfigurationUpdate { | 275 dictionary ExtensionConfigurationUpdate { |
| 277 DOMString extensionId; | 276 DOMString extensionId; |
| 278 boolean? fileAccess; | 277 boolean? fileAccess; |
| 279 boolean? incognitoAccess; | 278 boolean? incognitoAccess; |
| 280 boolean? errorCollection; | 279 boolean? errorCollection; |
| 281 boolean? runOnAllUrls; | 280 boolean? runOnAllUrls; |
| 282 boolean? showActionButton; | |
| 283 }; | 281 }; |
| 284 | 282 |
| 285 dictionary ProfileConfigurationUpdate { | 283 dictionary ProfileConfigurationUpdate { |
| 286 boolean? inDeveloperMode; | 284 boolean? inDeveloperMode; |
| 287 }; | 285 }; |
| 288 | 286 |
| 289 dictionary ExtensionCommandUpdate { | 287 dictionary ExtensionCommandUpdate { |
| 290 DOMString extensionId; | 288 DOMString extensionId; |
| 291 DOMString commandName; | 289 DOMString commandName; |
| 292 CommandScope? scope; | 290 CommandScope? scope; |
| (...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 630 | 628 |
| 631 interface Events { | 629 interface Events { |
| 632 // Fired when a item state is changed. | 630 // Fired when a item state is changed. |
| 633 static void onItemStateChanged(EventData response); | 631 static void onItemStateChanged(EventData response); |
| 634 | 632 |
| 635 // Fired when the profile's state has changed. | 633 // Fired when the profile's state has changed. |
| 636 static void onProfileStateChanged(ProfileInfo info); | 634 static void onProfileStateChanged(ProfileInfo info); |
| 637 }; | 635 }; |
| 638 | 636 |
| 639 }; | 637 }; |
| OLD | NEW |