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 #include "chrome/common/extensions/extension_constants.h" | 5 #include "chrome/common/extensions/extension_constants.h" |
6 | 6 |
7 namespace extension_manifest_keys { | 7 namespace extension_manifest_keys { |
8 | 8 |
9 const wchar_t* kAllFrames = L"all_frames"; | 9 const wchar_t* kAllFrames = L"all_frames"; |
10 const wchar_t* kBackground = L"background_page"; | 10 const wchar_t* kBackground = L"background_page"; |
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
246 "must be set to true in order to use any other web content features."; | 246 "must be set to true in order to use any other web content features."; |
247 } // namespace extension_manifest_errors | 247 } // namespace extension_manifest_errors |
248 | 248 |
249 namespace extension_urls { | 249 namespace extension_urls { |
250 const char* kGalleryBrowsePrefix = "https://chrome.google.com/extensions"; | 250 const char* kGalleryBrowsePrefix = "https://chrome.google.com/extensions"; |
251 const char* kGalleryDownloadPrefix = | 251 const char* kGalleryDownloadPrefix = |
252 "https://clients2.googleusercontent.com/crx/download"; | 252 "https://clients2.googleusercontent.com/crx/download"; |
253 const char* kMiniGalleryBrowsePrefix = "https://tools.google.com/chrome/"; | 253 const char* kMiniGalleryBrowsePrefix = "https://tools.google.com/chrome/"; |
254 const char* kMiniGalleryDownloadPrefix = "https://dl-ssl.google.com/chrome/"; | 254 const char* kMiniGalleryDownloadPrefix = "https://dl-ssl.google.com/chrome/"; |
255 } | 255 } |
| 256 |
| 257 namespace extension_filenames { |
| 258 const char* kTempExtensionName = "CRX_INSTALL"; |
| 259 |
| 260 // The file to write our decoded images to, relative to the extension_path. |
| 261 const char* kDecodedImagesFilename = "DECODED_IMAGES"; |
| 262 |
| 263 // The file to write our decoded message catalogs to, relative to the |
| 264 // extension_path. |
| 265 const char* kDecodedMessageCatalogsFilename = "DECODED_MESSAGE_CATALOGS"; |
| 266 } |
OLD | NEW |