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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 // download URLs. | 168 // download URLs. |
169 extern const char* kGalleryBrowsePrefix; | 169 extern const char* kGalleryBrowsePrefix; |
170 extern const char* kGalleryDownloadPrefix; | 170 extern const char* kGalleryDownloadPrefix; |
171 | 171 |
172 // Same thing for the "minigallery". The minigallery is the temporary static | 172 // Same thing for the "minigallery". The minigallery is the temporary static |
173 // themes gallery that we put up when we launched themes. | 173 // themes gallery that we put up when we launched themes. |
174 extern const char* kMiniGalleryBrowsePrefix; | 174 extern const char* kMiniGalleryBrowsePrefix; |
175 extern const char* kMiniGalleryDownloadPrefix; | 175 extern const char* kMiniGalleryDownloadPrefix; |
176 } // namespace extension_urls | 176 } // namespace extension_urls |
177 | 177 |
| 178 namespace extension_filenames { |
| 179 // The name of a temporary directory to install an extension into for |
| 180 // validation before finalizing install. |
| 181 extern const char* kTempExtensionName; |
| 182 |
| 183 // The file to write our decoded images to, relative to the extension_path. |
| 184 extern const char* kDecodedImagesFilename; |
| 185 |
| 186 // The file to write our decoded message catalogs to, relative to the |
| 187 // extension_path. |
| 188 extern const char* kDecodedMessageCatalogsFilename; |
| 189 } |
| 190 |
178 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 191 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
OLD | NEW |