| 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 #include "chrome/common/extensions/extension_manifest_constants.h" | 5 #include "chrome/common/extensions/extension_manifest_constants.h" |
| 6 | 6 |
| 7 namespace extension_manifest_keys { | 7 namespace extension_manifest_keys { |
| 8 | 8 |
| 9 const char kAllFrames[] = "all_frames"; | 9 const char kAllFrames[] = "all_frames"; |
| 10 const char kAltKey[] = "altKey"; | 10 const char kAltKey[] = "altKey"; |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 const char kSandboxedPagesCSP[] = "sandbox.content_security_policy"; | 118 const char kSandboxedPagesCSP[] = "sandbox.content_security_policy"; |
| 119 const char kScriptBadge[] = "script_badge"; | 119 const char kScriptBadge[] = "script_badge"; |
| 120 const char kShiftKey[] = "shiftKey"; | 120 const char kShiftKey[] = "shiftKey"; |
| 121 const char kShortcutKey[] = "shortcutKey"; | 121 const char kShortcutKey[] = "shortcutKey"; |
| 122 const char kSignature[] = "signature"; | 122 const char kSignature[] = "signature"; |
| 123 const char kSpellcheck[] = "spellcheck"; | 123 const char kSpellcheck[] = "spellcheck"; |
| 124 const char kSpellcheckDictionaryFormat[] = "dictionary_format"; | 124 const char kSpellcheckDictionaryFormat[] = "dictionary_format"; |
| 125 const char kSpellcheckDictionaryLanguage[] = "dictionary_language"; | 125 const char kSpellcheckDictionaryLanguage[] = "dictionary_language"; |
| 126 const char kSpellcheckDictionaryLocale[] = "dictionary_locale"; | 126 const char kSpellcheckDictionaryLocale[] = "dictionary_locale"; |
| 127 const char kSpellcheckDictionaryPath[] = "dictionary_path"; | 127 const char kSpellcheckDictionaryPath[] = "dictionary_path"; |
| 128 const char kStorageManagedSchema[] = "storage.managed_schema"; |
| 128 const char kSuggestedKey[] = "suggested_key"; | 129 const char kSuggestedKey[] = "suggested_key"; |
| 129 const char kSystemIndicator[] = "system_indicator"; | 130 const char kSystemIndicator[] = "system_indicator"; |
| 130 const char kSystemInfoDisplay[] = "systemInfo.display"; | 131 const char kSystemInfoDisplay[] = "systemInfo.display"; |
| 131 const char kTheme[] = "theme"; | 132 const char kTheme[] = "theme"; |
| 132 const char kThemeColors[] = "colors"; | 133 const char kThemeColors[] = "colors"; |
| 133 const char kThemeDisplayProperties[] = "properties"; | 134 const char kThemeDisplayProperties[] = "properties"; |
| 134 const char kThemeImages[] = "images"; | 135 const char kThemeImages[] = "images"; |
| 135 const char kThemeTints[] = "tints"; | 136 const char kThemeTints[] = "tints"; |
| 136 const char kTtsEngine[] = "tts_engine"; | 137 const char kTtsEngine[] = "tts_engine"; |
| 137 const char kTtsGenderFemale[] = "female"; | 138 const char kTtsGenderFemale[] = "female"; |
| (...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 623 const char kScriptBadgeTitleIgnored[] = | 624 const char kScriptBadgeTitleIgnored[] = |
| 624 "default_title specified in script_badge manifest section will not be " | 625 "default_title specified in script_badge manifest section will not be " |
| 625 "used."; | 626 "used."; |
| 626 const char kWebRequestConflictsWithLazyBackground[] = | 627 const char kWebRequestConflictsWithLazyBackground[] = |
| 627 "The 'webRequest' API cannot be used with event pages."; | 628 "The 'webRequest' API cannot be used with event pages."; |
| 628 #if defined(OS_CHROMEOS) | 629 #if defined(OS_CHROMEOS) |
| 629 const char kIllegalPlugins[] = | 630 const char kIllegalPlugins[] = |
| 630 "Extensions cannot install plugins on Chrome OS"; | 631 "Extensions cannot install plugins on Chrome OS"; |
| 631 #endif | 632 #endif |
| 632 } // namespace extension_manifest_errors | 633 } // namespace extension_manifest_errors |
| OLD | NEW |