| 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 extern const char* kManifestUnreadable; | 133 extern const char* kManifestUnreadable; |
| 134 extern const char* kMissingFile; | 134 extern const char* kMissingFile; |
| 135 extern const char* kInvalidUpdateURL; | 135 extern const char* kInvalidUpdateURL; |
| 136 extern const char* kInvalidDefaultLocale; | 136 extern const char* kInvalidDefaultLocale; |
| 137 extern const char* kLocalesNoDefaultLocaleSpecified; | 137 extern const char* kLocalesNoDefaultLocaleSpecified; |
| 138 extern const char* kLocalesNoDefaultMessages; | 138 extern const char* kLocalesNoDefaultMessages; |
| 139 extern const char* kLocalesNoValidLocaleNamesListed; | 139 extern const char* kLocalesNoValidLocaleNamesListed; |
| 140 extern const char* kLocalesTreeMissing; | 140 extern const char* kLocalesTreeMissing; |
| 141 extern const char* kLocalesMessagesFileMissing; | 141 extern const char* kLocalesMessagesFileMissing; |
| 142 extern const char* kInvalidOptionsPage; | 142 extern const char* kInvalidOptionsPage; |
| 143 extern const char* kReservedMessageFound; |
| 143 } // namespace extension_manifest_errors | 144 } // namespace extension_manifest_errors |
| 144 | 145 |
| 145 namespace extension_urls { | 146 namespace extension_urls { |
| 146 // The greatest common prefixes of the main extensions gallery's browse and | 147 // The greatest common prefixes of the main extensions gallery's browse and |
| 147 // download URLs. | 148 // download URLs. |
| 148 extern const char* kGalleryBrowsePrefix; | 149 extern const char* kGalleryBrowsePrefix; |
| 149 extern const char* kGalleryDownloadPrefix; | 150 extern const char* kGalleryDownloadPrefix; |
| 150 | 151 |
| 151 // Same thing for the "minigallery". The minigallery is the temporary static | 152 // Same thing for the "minigallery". The minigallery is the temporary static |
| 152 // themes gallery that we put up when we launched themes. | 153 // themes gallery that we put up when we launched themes. |
| 153 extern const char* kMiniGalleryBrowsePrefix; | 154 extern const char* kMiniGalleryBrowsePrefix; |
| 154 extern const char* kMiniGalleryDownloadPrefix; | 155 extern const char* kMiniGalleryDownloadPrefix; |
| 155 } // namespace extension_urls | 156 } // namespace extension_urls |
| 156 | 157 |
| 157 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 158 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| OLD | NEW |