| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_CONSTANTS_H_ | 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| 7 | 7 |
| 8 // Keys used in JSON representation of extensions. | 8 // Keys used in JSON representation of extensions. |
| 9 namespace extension_manifest_keys { | 9 namespace extension_manifest_keys { |
| 10 extern const wchar_t* kBackground; | 10 extern const wchar_t* kBackground; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 extern const wchar_t* kPluginsPath; | 23 extern const wchar_t* kPluginsPath; |
| 24 extern const wchar_t* kPluginsPublic; | 24 extern const wchar_t* kPluginsPublic; |
| 25 extern const wchar_t* kPublicKey; | 25 extern const wchar_t* kPublicKey; |
| 26 extern const wchar_t* kSignature; | 26 extern const wchar_t* kSignature; |
| 27 extern const wchar_t* kRunAt; | 27 extern const wchar_t* kRunAt; |
| 28 extern const wchar_t* kTheme; | 28 extern const wchar_t* kTheme; |
| 29 extern const wchar_t* kThemeImages; | 29 extern const wchar_t* kThemeImages; |
| 30 extern const wchar_t* kThemeColors; | 30 extern const wchar_t* kThemeColors; |
| 31 extern const wchar_t* kThemeTints; | 31 extern const wchar_t* kThemeTints; |
| 32 extern const wchar_t* kThemeDisplayProperties; | 32 extern const wchar_t* kThemeDisplayProperties; |
| 33 extern const wchar_t* kToolstripMoleHeight; |
| 34 extern const wchar_t* kToolstripMolePath; |
| 33 extern const wchar_t* kToolstripPath; | 35 extern const wchar_t* kToolstripPath; |
| 34 extern const wchar_t* kToolstrips; | 36 extern const wchar_t* kToolstrips; |
| 35 extern const wchar_t* kType; | 37 extern const wchar_t* kType; |
| 36 extern const wchar_t* kVersion; | 38 extern const wchar_t* kVersion; |
| 37 extern const wchar_t* kUpdateURL; | 39 extern const wchar_t* kUpdateURL; |
| 38 } // namespace extension_manifest_keys | 40 } // namespace extension_manifest_keys |
| 39 | 41 |
| 40 // Some values expected in manifests. | 42 // Some values expected in manifests. |
| 41 namespace extension_manifest_values { | 43 namespace extension_manifest_values { |
| 42 extern const char* kRunAtDocumentStart; | 44 extern const char* kRunAtDocumentStart; |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 extern const char* kInvalidThemeImagesMissing; | 89 extern const char* kInvalidThemeImagesMissing; |
| 88 extern const char* kInvalidThemeImages; | 90 extern const char* kInvalidThemeImages; |
| 89 extern const char* kInvalidThemeColors; | 91 extern const char* kInvalidThemeColors; |
| 90 extern const char* kInvalidThemeTints; | 92 extern const char* kInvalidThemeTints; |
| 91 extern const char* kThemesCannotContainExtensions; | 93 extern const char* kThemesCannotContainExtensions; |
| 92 extern const char* kMissingFile; | 94 extern const char* kMissingFile; |
| 93 extern const char* kInvalidUpdateURL; | 95 extern const char* kInvalidUpdateURL; |
| 94 } // namespace extension_manifest_errors | 96 } // namespace extension_manifest_errors |
| 95 | 97 |
| 96 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 98 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| OLD | NEW |