OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 { |
8 | 8 |
9 namespace switches { | 9 namespace switches { |
10 | 10 |
11 // Install CEEE. | 11 // Install CEEE. |
12 const char kCeee[] = "ceee"; | 12 const char kCeee[] = "ceee"; |
13 | 13 |
14 // Install Chrome. | 14 // Install Chrome. |
15 // Currently this is only required when used in combination with kMultiInstall. | 15 // Currently this is only required when used in combination with kMultiInstall. |
16 const char kChrome[] = "chrome"; | 16 const char kChrome[] = "chrome"; |
17 | 17 |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 const wchar_t kUninstallArgumentsField[] = L"UninstallArguments"; | 154 const wchar_t kUninstallArgumentsField[] = L"UninstallArguments"; |
155 const wchar_t kUninstallDisplayNameField[] = L"DisplayName"; | 155 const wchar_t kUninstallDisplayNameField[] = L"DisplayName"; |
156 const char kUninstallMetricsName[] = "uninstall_metrics"; | 156 const char kUninstallMetricsName[] = "uninstall_metrics"; |
157 const wchar_t kUninstallInstallationDate[] = L"installation_date"; | 157 const wchar_t kUninstallInstallationDate[] = L"installation_date"; |
158 const wchar_t kInstallerResult[] = L"InstallerResult"; | 158 const wchar_t kInstallerResult[] = L"InstallerResult"; |
159 const wchar_t kInstallerError[] = L"InstallerError"; | 159 const wchar_t kInstallerError[] = L"InstallerError"; |
160 const wchar_t kInstallerResultUIString[] = L"InstallerResultUIString"; | 160 const wchar_t kInstallerResultUIString[] = L"InstallerResultUIString"; |
161 const wchar_t kInstallerSuccessLaunchCmdLine[] = | 161 const wchar_t kInstallerSuccessLaunchCmdLine[] = |
162 L"InstallerSuccessLaunchCmdLine"; | 162 L"InstallerSuccessLaunchCmdLine"; |
163 | 163 |
164 } // namespace installer_util | 164 } // namespace installer |
OLD | NEW |