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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 extern const char kShortName[]; | 139 extern const char kShortName[]; |
140 extern const char kSignature[]; | 140 extern const char kSignature[]; |
141 extern const char kSockets[]; | 141 extern const char kSockets[]; |
142 extern const char kSpellcheck[]; | 142 extern const char kSpellcheck[]; |
143 extern const char kSpellcheckDictionaryFormat[]; | 143 extern const char kSpellcheckDictionaryFormat[]; |
144 extern const char kSpellcheckDictionaryLanguage[]; | 144 extern const char kSpellcheckDictionaryLanguage[]; |
145 extern const char kSpellcheckDictionaryLocale[]; | 145 extern const char kSpellcheckDictionaryLocale[]; |
146 extern const char kSpellcheckDictionaryPath[]; | 146 extern const char kSpellcheckDictionaryPath[]; |
147 extern const char kStorageManagedSchema[]; | 147 extern const char kStorageManagedSchema[]; |
148 extern const char kSuggestedKey[]; | 148 extern const char kSuggestedKey[]; |
| 149 extern const char kSynthesizeBrowserAction[]; |
149 extern const char kSystemIndicator[]; | 150 extern const char kSystemIndicator[]; |
150 extern const char kTheme[]; | 151 extern const char kTheme[]; |
151 extern const char kThemeColors[]; | 152 extern const char kThemeColors[]; |
152 extern const char kThemeDisplayProperties[]; | 153 extern const char kThemeDisplayProperties[]; |
153 extern const char kThemeImages[]; | 154 extern const char kThemeImages[]; |
154 extern const char kThemeTints[]; | 155 extern const char kThemeTints[]; |
155 extern const char kTtsEngine[]; | 156 extern const char kTtsEngine[]; |
156 extern const char kTtsGenderFemale[]; | 157 extern const char kTtsGenderFemale[]; |
157 extern const char kTtsGenderMale[]; | 158 extern const char kTtsGenderMale[]; |
158 extern const char kTtsVoices[]; | 159 extern const char kTtsVoices[]; |
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
476 extern const char kWebRequestConflictsWithLazyBackground[]; | 477 extern const char kWebRequestConflictsWithLazyBackground[]; |
477 #if defined(OS_CHROMEOS) | 478 #if defined(OS_CHROMEOS) |
478 extern const char kIllegalPlugins[]; | 479 extern const char kIllegalPlugins[]; |
479 #endif | 480 #endif |
480 | 481 |
481 } // namespace manifest_errors | 482 } // namespace manifest_errors |
482 | 483 |
483 } // namespace extensions | 484 } // namespace extensions |
484 | 485 |
485 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 486 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
OLD | NEW |