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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 const char kSandboxedPagesCSP[] = "sandbox.content_security_policy"; | 112 const char kSandboxedPagesCSP[] = "sandbox.content_security_policy"; |
113 const char kScriptBadge[] = "script_badge"; | 113 const char kScriptBadge[] = "script_badge"; |
114 const char kShiftKey[] = "shiftKey"; | 114 const char kShiftKey[] = "shiftKey"; |
115 const char kShortcutKey[] = "shortcutKey"; | 115 const char kShortcutKey[] = "shortcutKey"; |
116 const char kSignature[] = "signature"; | 116 const char kSignature[] = "signature"; |
117 const char kSpellcheck[] = "spellcheck"; | 117 const char kSpellcheck[] = "spellcheck"; |
118 const char kSpellcheckDictionaryFormat[] = "dictionary_format"; | 118 const char kSpellcheckDictionaryFormat[] = "dictionary_format"; |
119 const char kSpellcheckDictionaryLanguage[] = "dictionary_language"; | 119 const char kSpellcheckDictionaryLanguage[] = "dictionary_language"; |
120 const char kSpellcheckDictionaryLocale[] = "dictionary_locale"; | 120 const char kSpellcheckDictionaryLocale[] = "dictionary_locale"; |
121 const char kSpellcheckDictionaryPath[] = "dictionary_path"; | 121 const char kSpellcheckDictionaryPath[] = "dictionary_path"; |
| 122 const char kStorageManagedSchema[] = "storage.managed_schema"; |
122 const char kSuggestedKey[] = "suggested_key"; | 123 const char kSuggestedKey[] = "suggested_key"; |
123 const char kSystemIndicator[] = "system_indicator"; | 124 const char kSystemIndicator[] = "system_indicator"; |
124 const char kSystemInfoDisplay[] = "systemInfo.display"; | 125 const char kSystemInfoDisplay[] = "systemInfo.display"; |
125 const char kTheme[] = "theme"; | 126 const char kTheme[] = "theme"; |
126 const char kThemeColors[] = "colors"; | 127 const char kThemeColors[] = "colors"; |
127 const char kThemeDisplayProperties[] = "properties"; | 128 const char kThemeDisplayProperties[] = "properties"; |
128 const char kThemeImages[] = "images"; | 129 const char kThemeImages[] = "images"; |
129 const char kThemeTints[] = "tints"; | 130 const char kThemeTints[] = "tints"; |
130 const char kTtsEngine[] = "tts_engine"; | 131 const char kTtsEngine[] = "tts_engine"; |
131 const char kTtsGenderFemale[] = "female"; | 132 const char kTtsGenderFemale[] = "female"; |
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
619 const char kScriptBadgeTitleIgnored[] = | 620 const char kScriptBadgeTitleIgnored[] = |
620 "default_title specified in script_badge manifest section will not be " | 621 "default_title specified in script_badge manifest section will not be " |
621 "used."; | 622 "used."; |
622 const char kWebRequestConflictsWithLazyBackground[] = | 623 const char kWebRequestConflictsWithLazyBackground[] = |
623 "The 'webRequest' API cannot be used with event pages."; | 624 "The 'webRequest' API cannot be used with event pages."; |
624 #if defined(OS_CHROMEOS) | 625 #if defined(OS_CHROMEOS) |
625 const char kIllegalPlugins[] = | 626 const char kIllegalPlugins[] = |
626 "Extensions cannot install plugins on Chrome OS"; | 627 "Extensions cannot install plugins on Chrome OS"; |
627 #endif | 628 #endif |
628 } // namespace extension_manifest_errors | 629 } // namespace extension_manifest_errors |
OLD | NEW |