| 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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 extern const char kInvalidCommandsKey[]; | 272 extern const char kInvalidCommandsKey[]; |
| 273 extern const char kInvalidContentCapabilities[]; | 273 extern const char kInvalidContentCapabilities[]; |
| 274 extern const char kInvalidContentCapabilitiesMatch[]; | 274 extern const char kInvalidContentCapabilitiesMatch[]; |
| 275 extern const char kInvalidContentCapabilitiesMatchOrigin[]; | 275 extern const char kInvalidContentCapabilitiesMatchOrigin[]; |
| 276 extern const char kInvalidContentCapabilitiesPermission[]; | 276 extern const char kInvalidContentCapabilitiesPermission[]; |
| 277 extern const char kInvalidContentPack[]; | 277 extern const char kInvalidContentPack[]; |
| 278 extern const char kInvalidContentPackSites[]; | 278 extern const char kInvalidContentPackSites[]; |
| 279 extern const char kInvalidContentScript[]; | 279 extern const char kInvalidContentScript[]; |
| 280 extern const char kInvalidContentScriptsList[]; | 280 extern const char kInvalidContentScriptsList[]; |
| 281 extern const char kInvalidContentSecurityPolicy[]; | 281 extern const char kInvalidContentSecurityPolicy[]; |
| 282 extern const char kInvalidCSPInsecureValue[]; |
| 283 extern const char kInvalidCSPMissingSecureSrc[]; |
| 282 extern const char kInvalidCss[]; | 284 extern const char kInvalidCss[]; |
| 283 extern const char kInvalidCssList[]; | 285 extern const char kInvalidCssList[]; |
| 284 extern const char kInvalidDefaultLocale[]; | 286 extern const char kInvalidDefaultLocale[]; |
| 285 extern const char kInvalidDescription[]; | 287 extern const char kInvalidDescription[]; |
| 286 extern const char kInvalidDevToolsPage[]; | 288 extern const char kInvalidDevToolsPage[]; |
| 287 extern const char kInvalidDisplayInLauncher[]; | 289 extern const char kInvalidDisplayInLauncher[]; |
| 288 extern const char kInvalidDisplayInNewTabPage[]; | 290 extern const char kInvalidDisplayInNewTabPage[]; |
| 289 extern const char kInvalidEmptyDictionary[]; | 291 extern const char kInvalidEmptyDictionary[]; |
| 290 extern const char kInvalidExcludeMatch[]; | 292 extern const char kInvalidExcludeMatch[]; |
| 291 extern const char kInvalidExcludeMatches[]; | 293 extern const char kInvalidExcludeMatches[]; |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 extern const char kWebRequestConflictsWithLazyBackground[]; | 464 extern const char kWebRequestConflictsWithLazyBackground[]; |
| 463 #if defined(OS_CHROMEOS) | 465 #if defined(OS_CHROMEOS) |
| 464 extern const char kIllegalPlugins[]; | 466 extern const char kIllegalPlugins[]; |
| 465 #endif | 467 #endif |
| 466 | 468 |
| 467 } // namespace manifest_errors | 469 } // namespace manifest_errors |
| 468 | 470 |
| 469 } // namespace extensions | 471 } // namespace extensions |
| 470 | 472 |
| 471 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 473 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
| OLD | NEW |