Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(97)

Side by Side Diff: chrome/common/extensions/extension_constants.cc

Issue 1582022: Unpack extensions inside chrome's directory. (Closed)
Patch Set: Final rebase. Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/extension_constants.h ('k') | chrome/common/extensions/extension_file_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698