diff options
author | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-12 22:46:29 +0000 |
---|---|---|
committer | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-12 22:46:29 +0000 |
commit | 26ae81ce155ef3e92966b947c68ac0b0b5990226 (patch) | |
tree | 3d4819271814b7a2f17f5b10d550cd909c77728d /chrome/common/extensions | |
parent | 3603b3f52fa150402b4d98d43c71aa5e48cecc36 (diff) | |
download | chromium_src-26ae81ce155ef3e92966b947c68ac0b0b5990226.zip chromium_src-26ae81ce155ef3e92966b947c68ac0b0b5990226.tar.gz chromium_src-26ae81ce155ef3e92966b947c68ac0b0b5990226.tar.bz2 |
Improve text on management UI. Still waiting for a treatment
from the design team, but I wanted to at least get the words
in before the string freeze.
Review URL: http://codereview.chromium.org/385075
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31842 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions')
-rw-r--r-- | chrome/common/extensions/extension.cc | 3 | ||||
-rw-r--r-- | chrome/common/extensions/extension.h | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/chrome/common/extensions/extension.cc b/chrome/common/extensions/extension.cc index 0aad3de..87ab9b6 100644 --- a/chrome/common/extensions/extension.cc +++ b/chrome/common/extensions/extension.cc @@ -86,6 +86,9 @@ static const wchar_t* kValidThemeKeys[] = { keys::kUpdateURL }; +const char* Extension::kGalleryBrowseUrl = + "https://chrome.google.com/extensions"; + #if defined(OS_WIN) const char* Extension::kExtensionRegistryPath = "Software\\Google\\Chrome\\Extensions"; diff --git a/chrome/common/extensions/extension.h b/chrome/common/extensions/extension.h index d240388..24afa3a 100644 --- a/chrome/common/extensions/extension.h +++ b/chrome/common/extensions/extension.h @@ -63,6 +63,9 @@ class Extension { EXTENSION_ICON_BITTY = 16, }; + // The URL to browse the extensions gallery. + static const char* kGalleryBrowseUrl; + // Icon sizes used by the extension system. static const int kIconSizes[]; |