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