summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/extension_constants.cc
diff options
context:
space:
mode:
authoraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-20 02:16:13 +0000
committeraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-20 02:16:13 +0000
commite288840fb5acf7336568ea37527d2189c8733ae8 (patch)
tree1b349cf3b3e895d99defa2d7effe2d43707c8474 /chrome/common/extensions/extension_constants.cc
parent2eba1513ea24399e08de0836ce622d383e4606b8 (diff)
downloadchromium_src-e288840fb5acf7336568ea37527d2189c8733ae8.zip
chromium_src-e288840fb5acf7336568ea37527d2189c8733ae8.tar.gz
chromium_src-e288840fb5acf7336568ea37527d2189c8733ae8.tar.bz2
Special case the gallery to not show the scary download roadblock.
That was only needed because of clickjacking. BUG=28227 Review URL: http://codereview.chromium.org/411004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32588 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions/extension_constants.cc')
-rw-r--r--chrome/common/extensions/extension_constants.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/chrome/common/extensions/extension_constants.cc b/chrome/common/extensions/extension_constants.cc
index 733b4f8..efba4d3 100644
--- a/chrome/common/extensions/extension_constants.cc
+++ b/chrome/common/extensions/extension_constants.cc
@@ -195,3 +195,11 @@ const char* kLocalesMessagesFileMissing =
const char* kInvalidOptionsPage =
"Invalid value for 'options_page'.";
} // namespace extension_manifest_errors
+
+namespace extension_urls {
+const char* kGalleryBrowsePrefix = "https://chrome.google.com/extensions";
+const char* kGalleryDownloadPrefix =
+ "https://clients2.googleusercontent.com/crx/download";
+const char* kMiniGalleryBrowsePrefix = "https://tools.google.com/chrome/";
+const char* kMiniGalleryDownloadPrefix = "https://dl-ssl.google.com/chrome/";
+}