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 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
375 extern const char kInvalidPlugins[]; | 375 extern const char kInvalidPlugins[]; |
376 extern const char kInvalidPluginsPath[]; | 376 extern const char kInvalidPluginsPath[]; |
377 extern const char kInvalidPluginsPublic[]; | 377 extern const char kInvalidPluginsPublic[]; |
378 extern const char kInvalidRequirement[]; | 378 extern const char kInvalidRequirement[]; |
379 extern const char kInvalidRequirements[]; | 379 extern const char kInvalidRequirements[]; |
380 extern const char kInvalidRunAt[]; | 380 extern const char kInvalidRunAt[]; |
381 extern const char kInvalidSandboxedPagesList[]; | 381 extern const char kInvalidSandboxedPagesList[]; |
382 extern const char kInvalidSandboxedPage[]; | 382 extern const char kInvalidSandboxedPage[]; |
383 extern const char kInvalidSandboxedPagesCSP[]; | 383 extern const char kInvalidSandboxedPagesCSP[]; |
384 extern const char kInvalidScriptBadge[]; | 384 extern const char kInvalidScriptBadge[]; |
| 385 extern const char kInvalidSearchEngineURL[]; |
385 extern const char kInvalidEmptySettingsOverrides[]; | 386 extern const char kInvalidEmptySettingsOverrides[]; |
386 extern const char kInvalidShortName[]; | 387 extern const char kInvalidShortName[]; |
387 extern const char kInvalidSignature[]; | 388 extern const char kInvalidSignature[]; |
388 extern const char kInvalidSpellcheck[]; | 389 extern const char kInvalidSpellcheck[]; |
389 extern const char kInvalidSpellcheckDictionaryFormat[]; | 390 extern const char kInvalidSpellcheckDictionaryFormat[]; |
390 extern const char kInvalidSpellcheckDictionaryLanguage[]; | 391 extern const char kInvalidSpellcheckDictionaryLanguage[]; |
391 extern const char kInvalidSpellcheckDictionaryLocale[]; | 392 extern const char kInvalidSpellcheckDictionaryLocale[]; |
392 extern const char kInvalidSpellcheckDictionaryPath[]; | 393 extern const char kInvalidSpellcheckDictionaryPath[]; |
393 extern const char kInvalidStartupOverrideURL[]; | 394 extern const char kInvalidStartupOverrideURL[]; |
394 extern const char kInvalidSystemIndicator[]; | 395 extern const char kInvalidSystemIndicator[]; |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
450 extern const char kWebRequestConflictsWithLazyBackground[]; | 451 extern const char kWebRequestConflictsWithLazyBackground[]; |
451 #if defined(OS_CHROMEOS) | 452 #if defined(OS_CHROMEOS) |
452 extern const char kIllegalPlugins[]; | 453 extern const char kIllegalPlugins[]; |
453 #endif | 454 #endif |
454 | 455 |
455 } // namespace manifest_errors | 456 } // namespace manifest_errors |
456 | 457 |
457 } // namespace extensions | 458 } // namespace extensions |
458 | 459 |
459 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 460 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
OLD | NEW |