OLD | NEW |
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 // Run the installer in Chrome Frame mode. |
| 12 const wchar_t kChromeFrame[] = L"chrome-frame"; |
| 13 |
11 // Create Desktop and QuickLaunch shortcuts | 14 // Create Desktop and QuickLaunch shortcuts |
12 const wchar_t kCreateAllShortcuts[] = L"create-all-shortcuts"; | 15 const wchar_t kCreateAllShortcuts[] = L"create-all-shortcuts"; |
13 | 16 |
14 // Delete user profile also. This param is useful only when specified with | 17 // Delete user profile also. This param is useful only when specified with |
15 // kUninstall && kForceUninstall, otherwise it is silently ignored. | 18 // kUninstall && kForceUninstall, otherwise it is silently ignored. |
16 const wchar_t kDeleteProfile[] = L"delete-profile"; | 19 const wchar_t kDeleteProfile[] = L"delete-profile"; |
17 | 20 |
18 // Disable logging | 21 // Disable logging |
19 const wchar_t kDisableLogging[] = L"disable-logging"; | 22 const wchar_t kDisableLogging[] = L"disable-logging"; |
20 | 23 |
(...skipping 90 matching lines...) Loading... |
111 const wchar_t kChromeNewExe[] = L"new_chrome.exe"; | 114 const wchar_t kChromeNewExe[] = L"new_chrome.exe"; |
112 const wchar_t kChromeDll[] = L"chrome.dll"; | 115 const wchar_t kChromeDll[] = L"chrome.dll"; |
113 const wchar_t kSetupExe[] = L"setup.exe"; | 116 const wchar_t kSetupExe[] = L"setup.exe"; |
114 const wchar_t kInstallerDir[] = L"Installer"; | 117 const wchar_t kInstallerDir[] = L"Installer"; |
115 | 118 |
116 const wchar_t kUninstallStringField[] = L"UninstallString"; | 119 const wchar_t kUninstallStringField[] = L"UninstallString"; |
117 const wchar_t kUninstallDisplayNameField[] = L"DisplayName"; | 120 const wchar_t kUninstallDisplayNameField[] = L"DisplayName"; |
118 const wchar_t kUninstallMetricsName[] = L"uninstall_metrics"; | 121 const wchar_t kUninstallMetricsName[] = L"uninstall_metrics"; |
119 const wchar_t kUninstallInstallationDate[] = L"installation_date"; | 122 const wchar_t kUninstallInstallationDate[] = L"installation_date"; |
120 } // namespace installer_util | 123 } // namespace installer_util |
OLD | NEW |