OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 |
| 15 // kUninstall && kForceUninstall, otherwise it is silently ignored. |
| 16 const wchar_t kDeleteProfile[] = L"delete-profile"; |
| 17 |
14 // Disable logging | 18 // Disable logging |
15 const wchar_t kDisableLogging[] = L"disable-logging"; | 19 const wchar_t kDisableLogging[] = L"disable-logging"; |
16 | 20 |
17 // Prevent installer from launching Chrome after a successful first install. | 21 // Prevent installer from launching Chrome after a successful first install. |
18 const wchar_t kDoNotLaunchChrome[] = L"do-not-launch-chrome"; | 22 const wchar_t kDoNotLaunchChrome[] = L"do-not-launch-chrome"; |
19 | 23 |
20 // By default we remove all shared (between users) files, registry entries etc | 24 // By default we remove all shared (between users) files, registry entries etc |
21 // during uninstall. If this option is specified together with kUninstall option | 25 // during uninstall. If this option is specified together with kUninstall option |
22 // we do not clean up shared entries otherwise this option is ignored. | 26 // we do not clean up shared entries otherwise this option is ignored. |
23 const wchar_t kDoNotRemoveSharedItems[] = L"do-not-remove-shared-items"; | 27 const wchar_t kDoNotRemoveSharedItems[] = L"do-not-remove-shared-items"; |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 const wchar_t kChromeNewExe[] = L"new_chrome.exe"; | 84 const wchar_t kChromeNewExe[] = L"new_chrome.exe"; |
81 const wchar_t kChromeDll[] = L"chrome.dll"; | 85 const wchar_t kChromeDll[] = L"chrome.dll"; |
82 const wchar_t kSetupExe[] = L"setup.exe"; | 86 const wchar_t kSetupExe[] = L"setup.exe"; |
83 const wchar_t kInstallerDir[] = L"Installer"; | 87 const wchar_t kInstallerDir[] = L"Installer"; |
84 | 88 |
85 const wchar_t kUninstallStringField[] = L"UninstallString"; | 89 const wchar_t kUninstallStringField[] = L"UninstallString"; |
86 const wchar_t kUninstallDisplayNameField[] = L"DisplayName"; | 90 const wchar_t kUninstallDisplayNameField[] = L"DisplayName"; |
87 const wchar_t kUninstallMetricsName[] = L"uninstall_metrics"; | 91 const wchar_t kUninstallMetricsName[] = L"uninstall_metrics"; |
88 const wchar_t kUninstallInstallationDate[] = L"installation_date"; | 92 const wchar_t kUninstallInstallationDate[] = L"installation_date"; |
89 } // namespace installer_util | 93 } // namespace installer_util |
OLD | NEW |