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

Side by Side Diff: chrome/installer/util/util_constants.cc

Issue 196068: Adding a --do-not-create-shortcuts icons command line switch to the installer to prev... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 3 months 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 | Annotate | Revision Log
« no previous file with comments | « chrome/installer/util/util_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) 2006-2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-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/installer/util/util_constants.h" 5 #include "chrome/installer/util/util_constants.h"
6 6
7 namespace installer_util { 7 namespace installer_util {
8 8
9 namespace switches { 9 namespace switches {
10 10
11 // Create Desktop and QuickLaunch shortcuts 11 // Create Desktop and QuickLaunch shortcuts
12 const wchar_t kCreateAllShortcuts[] = L"create-all-shortcuts"; 12 const wchar_t kCreateAllShortcuts[] = L"create-all-shortcuts";
13 13
14 // Delete user profile also. This param is useful only when specified with 14 // Delete user profile also. This param is useful only when specified with
15 // kUninstall && kForceUninstall, otherwise it is silently ignored. 15 // kUninstall && kForceUninstall, otherwise it is silently ignored.
16 const wchar_t kDeleteProfile[] = L"delete-profile"; 16 const wchar_t kDeleteProfile[] = L"delete-profile";
17 17
18 // Disable logging 18 // Disable logging
19 const wchar_t kDisableLogging[] = L"disable-logging"; 19 const wchar_t kDisableLogging[] = L"disable-logging";
20 20
21 // Prevent installer from creating desktop shortcuts.
22 const wchar_t kDoNotCreateShortcuts[] = L"do-not-create-shortcuts";
23
21 // Prevent installer from launching Chrome after a successful first install. 24 // Prevent installer from launching Chrome after a successful first install.
22 const wchar_t kDoNotLaunchChrome[] = L"do-not-launch-chrome"; 25 const wchar_t kDoNotLaunchChrome[] = L"do-not-launch-chrome";
23 26
24 // By default we remove all shared (between users) files, registry entries etc 27 // By default we remove all shared (between users) files, registry entries etc
25 // during uninstall. If this option is specified together with kUninstall option 28 // during uninstall. If this option is specified together with kUninstall option
26 // we do not clean up shared entries otherwise this option is ignored. 29 // we do not clean up shared entries otherwise this option is ignored.
27 const wchar_t kDoNotRemoveSharedItems[] = L"do-not-remove-shared-items"; 30 const wchar_t kDoNotRemoveSharedItems[] = L"do-not-remove-shared-items";
28 31
29 // Enable logging at the error level. This is the default behavior. 32 // Enable logging at the error level. This is the default behavior.
30 const wchar_t kEnableLogging[] = L"enable-logging"; 33 const wchar_t kEnableLogging[] = L"enable-logging";
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 const wchar_t kChromeNewExe[] = L"new_chrome.exe"; 106 const wchar_t kChromeNewExe[] = L"new_chrome.exe";
104 const wchar_t kChromeDll[] = L"chrome.dll"; 107 const wchar_t kChromeDll[] = L"chrome.dll";
105 const wchar_t kSetupExe[] = L"setup.exe"; 108 const wchar_t kSetupExe[] = L"setup.exe";
106 const wchar_t kInstallerDir[] = L"Installer"; 109 const wchar_t kInstallerDir[] = L"Installer";
107 110
108 const wchar_t kUninstallStringField[] = L"UninstallString"; 111 const wchar_t kUninstallStringField[] = L"UninstallString";
109 const wchar_t kUninstallDisplayNameField[] = L"DisplayName"; 112 const wchar_t kUninstallDisplayNameField[] = L"DisplayName";
110 const wchar_t kUninstallMetricsName[] = L"uninstall_metrics"; 113 const wchar_t kUninstallMetricsName[] = L"uninstall_metrics";
111 const wchar_t kUninstallInstallationDate[] = L"installation_date"; 114 const wchar_t kUninstallInstallationDate[] = L"installation_date";
112 } // namespace installer_util 115 } // namespace installer_util
OLDNEW
« no previous file with comments | « chrome/installer/util/util_constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698