| 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 #include "extensions/common/manifest_constants.h" | 5 #include "extensions/common/manifest_constants.h" |
| 6 | 6 |
| 7 namespace extensions { | 7 namespace extensions { |
| 8 | 8 |
| 9 namespace manifest_keys { | 9 namespace manifest_keys { |
| 10 | 10 |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 const char kShortName[] = "short_name"; | 132 const char kShortName[] = "short_name"; |
| 133 const char kSignature[] = "signature"; | 133 const char kSignature[] = "signature"; |
| 134 const char kSockets[] = "sockets"; | 134 const char kSockets[] = "sockets"; |
| 135 const char kSpellcheck[] = "spellcheck"; | 135 const char kSpellcheck[] = "spellcheck"; |
| 136 const char kSpellcheckDictionaryFormat[] = "dictionary_format"; | 136 const char kSpellcheckDictionaryFormat[] = "dictionary_format"; |
| 137 const char kSpellcheckDictionaryLanguage[] = "dictionary_language"; | 137 const char kSpellcheckDictionaryLanguage[] = "dictionary_language"; |
| 138 const char kSpellcheckDictionaryLocale[] = "dictionary_locale"; | 138 const char kSpellcheckDictionaryLocale[] = "dictionary_locale"; |
| 139 const char kSpellcheckDictionaryPath[] = "dictionary_path"; | 139 const char kSpellcheckDictionaryPath[] = "dictionary_path"; |
| 140 const char kStorageManagedSchema[] = "storage.managed_schema"; | 140 const char kStorageManagedSchema[] = "storage.managed_schema"; |
| 141 const char kSuggestedKey[] = "suggested_key"; | 141 const char kSuggestedKey[] = "suggested_key"; |
| 142 const char kSynthesizeBrowserAction[] = "_synthesize_browser_action"; |
| 142 const char kSystemIndicator[] = "system_indicator"; | 143 const char kSystemIndicator[] = "system_indicator"; |
| 143 const char kTheme[] = "theme"; | 144 const char kTheme[] = "theme"; |
| 144 const char kThemeColors[] = "colors"; | 145 const char kThemeColors[] = "colors"; |
| 145 const char kThemeDisplayProperties[] = "properties"; | 146 const char kThemeDisplayProperties[] = "properties"; |
| 146 const char kThemeImages[] = "images"; | 147 const char kThemeImages[] = "images"; |
| 147 const char kThemeTints[] = "tints"; | 148 const char kThemeTints[] = "tints"; |
| 148 const char kTtsEngine[] = "tts_engine"; | 149 const char kTtsEngine[] = "tts_engine"; |
| 149 const char kTtsGenderFemale[] = "female"; | 150 const char kTtsGenderFemale[] = "female"; |
| 150 const char kTtsGenderMale[] = "male"; | 151 const char kTtsGenderMale[] = "male"; |
| 151 const char kTtsVoices[] = "voices"; | 152 const char kTtsVoices[] = "voices"; |
| (...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 722 const char kWebRequestConflictsWithLazyBackground[] = | 723 const char kWebRequestConflictsWithLazyBackground[] = |
| 723 "The 'webRequest' API cannot be used with event pages."; | 724 "The 'webRequest' API cannot be used with event pages."; |
| 724 #if defined(OS_CHROMEOS) | 725 #if defined(OS_CHROMEOS) |
| 725 const char kIllegalPlugins[] = | 726 const char kIllegalPlugins[] = |
| 726 "Extensions cannot install plugins on Chrome OS"; | 727 "Extensions cannot install plugins on Chrome OS"; |
| 727 #endif | 728 #endif |
| 728 | 729 |
| 729 } // namespace manifest_errors | 730 } // namespace manifest_errors |
| 730 | 731 |
| 731 } // namespace extensions | 732 } // namespace extensions |
| OLD | NEW |