| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 5 #ifndef EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
| 6 #define EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 6 #define EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
| 7 | 7 |
| 8 namespace extensions { | 8 namespace extensions { |
| 9 | 9 |
| 10 // Keys used in JSON representation of extensions. | 10 // Keys used in JSON representation of extensions. |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 | 243 |
| 244 extern const char kActiveTabPermissionNotGranted[]; | 244 extern const char kActiveTabPermissionNotGranted[]; |
| 245 extern const char kAllURLOrActiveTabNeeded[]; | 245 extern const char kAllURLOrActiveTabNeeded[]; |
| 246 extern const char kAppsNotEnabled[]; | 246 extern const char kAppsNotEnabled[]; |
| 247 extern const char kBackgroundPermissionNeeded[]; | 247 extern const char kBackgroundPermissionNeeded[]; |
| 248 extern const char kBackgroundRequiredForPlatformApps[]; | 248 extern const char kBackgroundRequiredForPlatformApps[]; |
| 249 extern const char kCannotAccessAboutUrl[]; | 249 extern const char kCannotAccessAboutUrl[]; |
| 250 extern const char kCannotAccessChromeUrl[]; | 250 extern const char kCannotAccessChromeUrl[]; |
| 251 extern const char kCannotAccessExtensionUrl[]; | 251 extern const char kCannotAccessExtensionUrl[]; |
| 252 extern const char kCannotAccessPage[]; | 252 extern const char kCannotAccessPage[]; |
| 253 extern const char kCannotAccessPageWithUrl[]; |
| 253 extern const char kCannotChangeExtensionID[]; | 254 extern const char kCannotChangeExtensionID[]; |
| 254 extern const char kCannotClaimAllHostsInExtent[]; | 255 extern const char kCannotClaimAllHostsInExtent[]; |
| 255 extern const char kCannotClaimAllURLsInExtent[]; | 256 extern const char kCannotClaimAllURLsInExtent[]; |
| 256 extern const char kCannotScriptGallery[]; | 257 extern const char kCannotScriptGallery[]; |
| 257 extern const char kCannotScriptSigninPage[]; | 258 extern const char kCannotScriptSigninPage[]; |
| 258 extern const char kCannotUninstallManagedExtension[]; | 259 extern const char kCannotUninstallManagedExtension[]; |
| 259 extern const char kChromeVersionTooLow[]; | 260 extern const char kChromeVersionTooLow[]; |
| 260 extern const char kDevToolsExperimental[]; | 261 extern const char kDevToolsExperimental[]; |
| 261 extern const char kDisabledByPolicy[]; | 262 extern const char kDisabledByPolicy[]; |
| 262 extern const char kExpectString[]; | 263 extern const char kExpectString[]; |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 extern const char kIllegalPlugins[]; | 481 extern const char kIllegalPlugins[]; |
| 481 extern const char kInvalidFileSystemProviderMissingCapabilities[]; | 482 extern const char kInvalidFileSystemProviderMissingCapabilities[]; |
| 482 extern const char kInvalidFileSystemProviderMissingPermission[]; | 483 extern const char kInvalidFileSystemProviderMissingPermission[]; |
| 483 #endif | 484 #endif |
| 484 | 485 |
| 485 } // namespace manifest_errors | 486 } // namespace manifest_errors |
| 486 | 487 |
| 487 } // namespace extensions | 488 } // namespace extensions |
| 488 | 489 |
| 489 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 490 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
| OLD | NEW |