| 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 29 matching lines...) Expand all Loading... |
| 40 extern const wchar_t* kThemeColors; | 40 extern const wchar_t* kThemeColors; |
| 41 extern const wchar_t* kThemeTints; | 41 extern const wchar_t* kThemeTints; |
| 42 extern const wchar_t* kThemeDisplayProperties; | 42 extern const wchar_t* kThemeDisplayProperties; |
| 43 extern const wchar_t* kToolstripMoleHeight; | 43 extern const wchar_t* kToolstripMoleHeight; |
| 44 extern const wchar_t* kToolstripMolePath; | 44 extern const wchar_t* kToolstripMolePath; |
| 45 extern const wchar_t* kToolstripPath; | 45 extern const wchar_t* kToolstripPath; |
| 46 extern const wchar_t* kToolstrips; | 46 extern const wchar_t* kToolstrips; |
| 47 extern const wchar_t* kType; | 47 extern const wchar_t* kType; |
| 48 extern const wchar_t* kVersion; | 48 extern const wchar_t* kVersion; |
| 49 extern const wchar_t* kUpdateURL; | 49 extern const wchar_t* kUpdateURL; |
| 50 extern const wchar_t* kOptionsPage; |
| 50 } // namespace extension_manifest_keys | 51 } // namespace extension_manifest_keys |
| 51 | 52 |
| 52 // Some values expected in manifests. | 53 // Some values expected in manifests. |
| 53 namespace extension_manifest_values { | 54 namespace extension_manifest_values { |
| 54 extern const char* kRunAtDocumentStart; | 55 extern const char* kRunAtDocumentStart; |
| 55 extern const char* kRunAtDocumentEnd; | 56 extern const char* kRunAtDocumentEnd; |
| 56 extern const char* kPageActionTypeTab; | 57 extern const char* kPageActionTypeTab; |
| 57 extern const char* kPageActionTypePermanent; | 58 extern const char* kPageActionTypePermanent; |
| 58 } // namespace extension_manifest_values | 59 } // namespace extension_manifest_values |
| 59 | 60 |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 extern const char* kInvalidThemeTints; | 110 extern const char* kInvalidThemeTints; |
| 110 extern const char* kOneUISurfaceOnly; | 111 extern const char* kOneUISurfaceOnly; |
| 111 extern const char* kThemesCannotContainExtensions; | 112 extern const char* kThemesCannotContainExtensions; |
| 112 extern const char* kManifestParseError; | 113 extern const char* kManifestParseError; |
| 113 extern const char* kManifestUnreadable; | 114 extern const char* kManifestUnreadable; |
| 114 extern const char* kMissingFile; | 115 extern const char* kMissingFile; |
| 115 extern const char* kInvalidUpdateURL; | 116 extern const char* kInvalidUpdateURL; |
| 116 extern const char* kInvalidDefaultLocale; | 117 extern const char* kInvalidDefaultLocale; |
| 117 extern const char* kLocalesNoDefaultLocaleSpecified; | 118 extern const char* kLocalesNoDefaultLocaleSpecified; |
| 118 extern const char* kLocalesNoValidLocaleNamesListed; | 119 extern const char* kLocalesNoValidLocaleNamesListed; |
| 120 extern const char* kInvalidOptionsPage; |
| 119 } // namespace extension_manifest_errors | 121 } // namespace extension_manifest_errors |
| 120 | 122 |
| 121 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 123 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| OLD | NEW |