| 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 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ | 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ |
| 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ | 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 extern const char kPublicKey[]; | 107 extern const char kPublicKey[]; |
| 108 extern const char kRequirements[]; | 108 extern const char kRequirements[]; |
| 109 extern const char kRunAt[]; | 109 extern const char kRunAt[]; |
| 110 extern const char kSandboxedPages[]; | 110 extern const char kSandboxedPages[]; |
| 111 extern const char kSandboxedPagesCSP[]; | 111 extern const char kSandboxedPagesCSP[]; |
| 112 extern const char kScriptBadge[]; | 112 extern const char kScriptBadge[]; |
| 113 extern const char kShiftKey[]; | 113 extern const char kShiftKey[]; |
| 114 extern const char kShortcutKey[]; | 114 extern const char kShortcutKey[]; |
| 115 extern const char kSignature[]; | 115 extern const char kSignature[]; |
| 116 extern const char kSuggestedKey[]; | 116 extern const char kSuggestedKey[]; |
| 117 extern const char kSystemIndicator[]; |
| 117 extern const char kTheme[]; | 118 extern const char kTheme[]; |
| 118 extern const char kThemeColors[]; | 119 extern const char kThemeColors[]; |
| 119 extern const char kThemeDisplayProperties[]; | 120 extern const char kThemeDisplayProperties[]; |
| 120 extern const char kThemeImages[]; | 121 extern const char kThemeImages[]; |
| 121 extern const char kThemeTints[]; | 122 extern const char kThemeTints[]; |
| 122 extern const char kTtsEngine[]; | 123 extern const char kTtsEngine[]; |
| 123 extern const char kTtsGenderFemale[]; | 124 extern const char kTtsGenderFemale[]; |
| 124 extern const char kTtsGenderMale[]; | 125 extern const char kTtsGenderMale[]; |
| 125 extern const char kTtsVoices[]; | 126 extern const char kTtsVoices[]; |
| 126 extern const char kTtsVoicesEventTypeEnd[]; | 127 extern const char kTtsVoicesEventTypeEnd[]; |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 extern const char kInvalidPluginsPath[]; | 295 extern const char kInvalidPluginsPath[]; |
| 295 extern const char kInvalidPluginsPublic[]; | 296 extern const char kInvalidPluginsPublic[]; |
| 296 extern const char kInvalidRequirement[]; | 297 extern const char kInvalidRequirement[]; |
| 297 extern const char kInvalidRequirements[]; | 298 extern const char kInvalidRequirements[]; |
| 298 extern const char kInvalidRunAt[]; | 299 extern const char kInvalidRunAt[]; |
| 299 extern const char kInvalidSandboxedPagesList[]; | 300 extern const char kInvalidSandboxedPagesList[]; |
| 300 extern const char kInvalidSandboxedPage[]; | 301 extern const char kInvalidSandboxedPage[]; |
| 301 extern const char kInvalidSandboxedPagesCSP[]; | 302 extern const char kInvalidSandboxedPagesCSP[]; |
| 302 extern const char kInvalidScriptBadge[]; | 303 extern const char kInvalidScriptBadge[]; |
| 303 extern const char kInvalidSignature[]; | 304 extern const char kInvalidSignature[]; |
| 305 extern const char kInvalidSystemIndicator[]; |
| 304 extern const char kInvalidTheme[]; | 306 extern const char kInvalidTheme[]; |
| 305 extern const char kInvalidThemeColors[]; | 307 extern const char kInvalidThemeColors[]; |
| 306 extern const char kInvalidThemeImages[]; | 308 extern const char kInvalidThemeImages[]; |
| 307 extern const char kInvalidThemeImagesMissing[]; | 309 extern const char kInvalidThemeImagesMissing[]; |
| 308 extern const char kInvalidThemeTints[]; | 310 extern const char kInvalidThemeTints[]; |
| 309 extern const char kInvalidTts[]; | 311 extern const char kInvalidTts[]; |
| 310 extern const char kInvalidTtsVoices[]; | 312 extern const char kInvalidTtsVoices[]; |
| 311 extern const char kInvalidTtsVoicesEventTypes[]; | 313 extern const char kInvalidTtsVoicesEventTypes[]; |
| 312 extern const char kInvalidTtsVoicesGender[]; | 314 extern const char kInvalidTtsVoicesGender[]; |
| 313 extern const char kInvalidTtsVoicesLang[]; | 315 extern const char kInvalidTtsVoicesLang[]; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 341 extern const char kScriptBadgeRequiresFlag[]; | 343 extern const char kScriptBadgeRequiresFlag[]; |
| 342 extern const char kScriptBadgeIconIgnored[]; | 344 extern const char kScriptBadgeIconIgnored[]; |
| 343 extern const char kScriptBadgeTitleIgnored[]; | 345 extern const char kScriptBadgeTitleIgnored[]; |
| 344 extern const char kWebRequestConflictsWithLazyBackground[]; | 346 extern const char kWebRequestConflictsWithLazyBackground[]; |
| 345 #if defined(OS_CHROMEOS) | 347 #if defined(OS_CHROMEOS) |
| 346 extern const char kIllegalPlugins[]; | 348 extern const char kIllegalPlugins[]; |
| 347 #endif | 349 #endif |
| 348 } // namespace extension_manifest_errors | 350 } // namespace extension_manifest_errors |
| 349 | 351 |
| 350 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ | 352 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ |
| OLD | NEW |