| 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* kAllFrames; | 10 extern const wchar_t* kAllFrames; |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 extern const char* kInvalidThemeColors; | 118 extern const char* kInvalidThemeColors; |
| 119 extern const char* kInvalidThemeTints; | 119 extern const char* kInvalidThemeTints; |
| 120 extern const char* kOneUISurfaceOnly; | 120 extern const char* kOneUISurfaceOnly; |
| 121 extern const char* kThemesCannotContainExtensions; | 121 extern const char* kThemesCannotContainExtensions; |
| 122 extern const char* kManifestParseError; | 122 extern const char* kManifestParseError; |
| 123 extern const char* kManifestUnreadable; | 123 extern const char* kManifestUnreadable; |
| 124 extern const char* kMissingFile; | 124 extern const char* kMissingFile; |
| 125 extern const char* kInvalidUpdateURL; | 125 extern const char* kInvalidUpdateURL; |
| 126 extern const char* kInvalidDefaultLocale; | 126 extern const char* kInvalidDefaultLocale; |
| 127 extern const char* kLocalesNoDefaultLocaleSpecified; | 127 extern const char* kLocalesNoDefaultLocaleSpecified; |
| 128 extern const char* kLocalesNoDefaultMessages; |
| 128 extern const char* kLocalesNoValidLocaleNamesListed; | 129 extern const char* kLocalesNoValidLocaleNamesListed; |
| 130 extern const char* kLocalesTreeMissing; |
| 131 extern const char* kLocalesMessagesFileMissing; |
| 129 extern const char* kInvalidOptionsPage; | 132 extern const char* kInvalidOptionsPage; |
| 130 } // namespace extension_manifest_errors | 133 } // namespace extension_manifest_errors |
| 131 | 134 |
| 132 namespace extension_urls { | 135 namespace extension_urls { |
| 133 // The greatest common prefixes of the main extensions gallery's browse and | 136 // The greatest common prefixes of the main extensions gallery's browse and |
| 134 // download URLs. | 137 // download URLs. |
| 135 extern const char* kGalleryBrowsePrefix; | 138 extern const char* kGalleryBrowsePrefix; |
| 136 extern const char* kGalleryDownloadPrefix; | 139 extern const char* kGalleryDownloadPrefix; |
| 137 | 140 |
| 138 // Same thing for the "minigallery". The minigallery is the temporary static | 141 // Same thing for the "minigallery". The minigallery is the temporary static |
| 139 // themes gallery that we put up when we launched themes. | 142 // themes gallery that we put up when we launched themes. |
| 140 extern const char* kMiniGalleryBrowsePrefix; | 143 extern const char* kMiniGalleryBrowsePrefix; |
| 141 extern const char* kMiniGalleryDownloadPrefix; | 144 extern const char* kMiniGalleryDownloadPrefix; |
| 142 } // namespace extension_urls | 145 } // namespace extension_urls |
| 143 | 146 |
| 144 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 147 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| OLD | NEW |