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

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

Issue 411004: Special case the gallery to not show the scary download roadblock. (Closed)
Patch Set: add comments Created 11 years, 1 month 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
« no previous file with comments | « chrome/common/extensions/extension_constants.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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* kBackground = L"background_page"; 9 const wchar_t* kBackground = L"background_page";
10 const wchar_t* kBrowserAction = L"browser_action"; 10 const wchar_t* kBrowserAction = L"browser_action";
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 "Default locale is defined but default data couldn't be loaded."; 188 "Default locale is defined but default data couldn't be loaded.";
189 const char* kLocalesNoValidLocaleNamesListed = 189 const char* kLocalesNoValidLocaleNamesListed =
190 "No valid locale name could be found in _locales directory."; 190 "No valid locale name could be found in _locales directory.";
191 const char* kLocalesTreeMissing = 191 const char* kLocalesTreeMissing =
192 "Default locale was specified, but _locales subtree is missing."; 192 "Default locale was specified, but _locales subtree is missing.";
193 const char* kLocalesMessagesFileMissing = 193 const char* kLocalesMessagesFileMissing =
194 "Messages file is missing for locale."; 194 "Messages file is missing for locale.";
195 const char* kInvalidOptionsPage = 195 const char* kInvalidOptionsPage =
196 "Invalid value for 'options_page'."; 196 "Invalid value for 'options_page'.";
197 } // namespace extension_manifest_errors 197 } // namespace extension_manifest_errors
198
199 namespace extension_urls {
200 const char* kGalleryBrowsePrefix = "https://chrome.google.com/extensions";
201 const char* kGalleryDownloadPrefix =
202 "https://clients2.googleusercontent.com/crx/download";
203 const char* kMiniGalleryBrowsePrefix = "https://tools.google.com/chrome/";
204 const char* kMiniGalleryDownloadPrefix = "https://dl-ssl.google.com/chrome/";
205 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/extension_constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698