| 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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 extern const char kInvalidBrowserAction[]; | 267 extern const char kInvalidBrowserAction[]; |
| 268 extern const char kInvalidBrowseURL[]; | 268 extern const char kInvalidBrowseURL[]; |
| 269 extern const char kInvalidBrowseURLs[]; | 269 extern const char kInvalidBrowseURLs[]; |
| 270 extern const char kInvalidChromeURLOverrides[]; | 270 extern const char kInvalidChromeURLOverrides[]; |
| 271 extern const char kInvalidCommandsKey[]; | 271 extern const char kInvalidCommandsKey[]; |
| 272 extern const char kInvalidContentPack[]; | 272 extern const char kInvalidContentPack[]; |
| 273 extern const char kInvalidContentPackSites[]; | 273 extern const char kInvalidContentPackSites[]; |
| 274 extern const char kInvalidContentScript[]; | 274 extern const char kInvalidContentScript[]; |
| 275 extern const char kInvalidContentScriptsList[]; | 275 extern const char kInvalidContentScriptsList[]; |
| 276 extern const char kInvalidContentSecurityPolicy[]; | 276 extern const char kInvalidContentSecurityPolicy[]; |
| 277 extern const char kInvalidCSPInsecureValue[]; |
| 278 extern const char kInvalidCSPMissingSecureSrc[]; |
| 277 extern const char kInvalidCss[]; | 279 extern const char kInvalidCss[]; |
| 278 extern const char kInvalidCssList[]; | 280 extern const char kInvalidCssList[]; |
| 279 extern const char kInvalidDefaultLocale[]; | 281 extern const char kInvalidDefaultLocale[]; |
| 280 extern const char kInvalidDescription[]; | 282 extern const char kInvalidDescription[]; |
| 281 extern const char kInvalidDevToolsPage[]; | 283 extern const char kInvalidDevToolsPage[]; |
| 282 extern const char kInvalidDisplayInLauncher[]; | 284 extern const char kInvalidDisplayInLauncher[]; |
| 283 extern const char kInvalidDisplayInNewTabPage[]; | 285 extern const char kInvalidDisplayInNewTabPage[]; |
| 284 extern const char kInvalidEmptyDictionary[]; | 286 extern const char kInvalidEmptyDictionary[]; |
| 285 extern const char kInvalidExcludeMatch[]; | 287 extern const char kInvalidExcludeMatch[]; |
| 286 extern const char kInvalidExcludeMatches[]; | 288 extern const char kInvalidExcludeMatches[]; |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 extern const char kWebRequestConflictsWithLazyBackground[]; | 462 extern const char kWebRequestConflictsWithLazyBackground[]; |
| 461 #if defined(OS_CHROMEOS) | 463 #if defined(OS_CHROMEOS) |
| 462 extern const char kIllegalPlugins[]; | 464 extern const char kIllegalPlugins[]; |
| 463 #endif | 465 #endif |
| 464 | 466 |
| 465 } // namespace manifest_errors | 467 } // namespace manifest_errors |
| 466 | 468 |
| 467 } // namespace extensions | 469 } // namespace extensions |
| 468 | 470 |
| 469 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 471 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
| OLD | NEW |