diff options
author | kuchhal@chromium.org <kuchhal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-24 16:18:27 +0000 |
---|---|---|
committer | kuchhal@chromium.org <kuchhal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-24 16:18:27 +0000 |
commit | 67da235a1f65da29dc578af28ce043af6be0fa74 (patch) | |
tree | 6c619b18d88420c9cc8e0684983e17a47bf34731 /chrome/installer/util/util_constants.cc | |
parent | 046009ed359d28f4d51360b9edd57dbd94cec979 (diff) | |
download | chromium_src-67da235a1f65da29dc578af28ce043af6be0fa74.zip chromium_src-67da235a1f65da29dc578af28ce043af6be0fa74.tar.gz chromium_src-67da235a1f65da29dc578af28ce043af6be0fa74.tar.bz2 |
Add installer command line option to create shortcuts (desktop and quick
launch).
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3913 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer/util/util_constants.cc')
-rw-r--r-- | chrome/installer/util/util_constants.cc | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/chrome/installer/util/util_constants.cc b/chrome/installer/util/util_constants.cc index 19934f69..283683e 100644 --- a/chrome/installer/util/util_constants.cc +++ b/chrome/installer/util/util_constants.cc @@ -8,12 +8,24 @@ namespace installer_util { namespace switches { +// Create Desktop and QuickLaunch shortcuts +const wchar_t kCreateAllShortcuts[] = L"create-all-shortcuts"; + // Disable logging const wchar_t kDisableLogging[] = L"disable-logging"; +// By default we remove all shared (between users) files, registry entries etc +// during uninstall. If this option is specified together with kUninstall option +// we do not clean up shared entries otherwise this option is ignored. +const wchar_t kDoNotRemoveSharedItems[] = L"do-not-remove-shared-items"; + // Enable logging at the error level. This is the default behavior. const wchar_t kEnableLogging[] = L"enable-logging"; +// If present, setup will uninstall chrome without asking for any +// confirmation from user. +const wchar_t kForceUninstall[] = L"force-uninstall"; + // Specify the file path of Chrome archive for install. const wchar_t kInstallArchive[] = L"install-archive"; @@ -25,21 +37,12 @@ const wchar_t kLogFile[] = L"log-file"; // options kInstallArchive and kUninstall are ignored. const wchar_t kRegisterChromeBrowser[] = L"register-chrome-browser"; -// By default we remove all shared (between users) files, registry entries etc -// during uninstall. If this option is specified together with kUninstall option -// we do not clean up shared entries otherwise this option is ignored. -const wchar_t kDoNotRemoveSharedItems[] = L"do-not-remove-shared-items"; - // Install Chrome to system wise location. The default is per user install. const wchar_t kSystemLevel[] = L"system-level"; // If present, setup will uninstall chrome. const wchar_t kUninstall[] = L"uninstall"; -// If present, setup will uninstall chrome without asking for any -// confirmation from user. -const wchar_t kForceUninstall[] = L"force-uninstall"; - // Enable verbose logging (info level). const wchar_t kVerboseLogging[] = L"verbose-logging"; |