diff options
author | erikkay@google.com <erikkay@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-29 23:19:19 +0000 |
---|---|---|
committer | erikkay@google.com <erikkay@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-29 23:19:19 +0000 |
commit | cc65591412746641bf656d52d71663726cdd7934 (patch) | |
tree | f31a1514d566e91d00219f38d57e2cbacac988dd /chrome/common/chrome_switches.cc | |
parent | 219a862ce1d8b647364c31dfa619c4d956cfae35 (diff) | |
download | chromium_src-cc65591412746641bf656d52d71663726cdd7934.zip chromium_src-cc65591412746641bf656d52d71663726cdd7934.tar.gz chromium_src-cc65591412746641bf656d52d71663726cdd7934.tar.bz2 |
Simple installation of extensions using chrome.exe --install-extensionChanged manifest filename to end in .json.Updated authoring script to include sha256 hash of zip file.
Review URL: http://codereview.chromium.org/18477
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8926 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_switches.cc')
-rw-r--r-- | chrome/common/chrome_switches.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index a156748..f2e0c68 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -340,6 +340,10 @@ const wchar_t kEnableUserScripts[] = L"enable-user-scripts"; // Enable extensions. const wchar_t kEnableExtensions[] = L"enable-extensions"; +// Install the extension specified in the argument. This is for MIME type +// handling so that users can double-click on an extension. +const wchar_t kInstallExtension[] = L"install-extension"; + // Causes the browser to launch directly in incognito mode. const wchar_t kIncognito[] = L"incognito"; |