OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 { | 7 namespace installer { |
8 | 8 |
9 namespace switches { | 9 namespace switches { |
10 | 10 |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 const wchar_t kUninstallArgumentsField[] = L"UninstallArguments"; | 170 const wchar_t kUninstallArgumentsField[] = L"UninstallArguments"; |
171 const wchar_t kUninstallDisplayNameField[] = L"DisplayName"; | 171 const wchar_t kUninstallDisplayNameField[] = L"DisplayName"; |
172 const char kUninstallMetricsName[] = "uninstall_metrics"; | 172 const char kUninstallMetricsName[] = "uninstall_metrics"; |
173 const wchar_t kUninstallInstallationDate[] = L"installation_date"; | 173 const wchar_t kUninstallInstallationDate[] = L"installation_date"; |
174 const wchar_t kInstallerResult[] = L"InstallerResult"; | 174 const wchar_t kInstallerResult[] = L"InstallerResult"; |
175 const wchar_t kInstallerError[] = L"InstallerError"; | 175 const wchar_t kInstallerError[] = L"InstallerError"; |
176 const wchar_t kInstallerResultUIString[] = L"InstallerResultUIString"; | 176 const wchar_t kInstallerResultUIString[] = L"InstallerResultUIString"; |
177 const wchar_t kInstallerSuccessLaunchCmdLine[] = | 177 const wchar_t kInstallerSuccessLaunchCmdLine[] = |
178 L"InstallerSuccessLaunchCmdLine"; | 178 L"InstallerSuccessLaunchCmdLine"; |
179 | 179 |
| 180 const wchar_t kOptionCeee[] = L"ceee"; |
| 181 const wchar_t kOptionMultiInstall[] = L"multi-install"; |
| 182 const wchar_t kOptionReadyMode[] = L"ready-mode"; |
| 183 |
180 } // namespace installer | 184 } // namespace installer |
OLD | NEW |