OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 const wchar_t kUninstallDisplayNameField[] = L"DisplayName"; | 235 const wchar_t kUninstallDisplayNameField[] = L"DisplayName"; |
236 const char kUninstallMetricsName[] = "uninstall_metrics"; | 236 const char kUninstallMetricsName[] = "uninstall_metrics"; |
237 const wchar_t kUninstallInstallationDate[] = L"installation_date"; | 237 const wchar_t kUninstallInstallationDate[] = L"installation_date"; |
238 const wchar_t kInstallerError[] = L"InstallerError"; | 238 const wchar_t kInstallerError[] = L"InstallerError"; |
239 const wchar_t kInstallerExtraCode1[] = L"InstallerExtraCode1"; | 239 const wchar_t kInstallerExtraCode1[] = L"InstallerExtraCode1"; |
240 const wchar_t kInstallerResult[] = L"InstallerResult"; | 240 const wchar_t kInstallerResult[] = L"InstallerResult"; |
241 const wchar_t kInstallerResultUIString[] = L"InstallerResultUIString"; | 241 const wchar_t kInstallerResultUIString[] = L"InstallerResultUIString"; |
242 const wchar_t kInstallerSuccessLaunchCmdLine[] = | 242 const wchar_t kInstallerSuccessLaunchCmdLine[] = |
243 L"InstallerSuccessLaunchCmdLine"; | 243 L"InstallerSuccessLaunchCmdLine"; |
244 | 244 |
245 // The presence of this environment variable with a value of 1 implies that | |
246 // we should run as a system installation regardless of what is on the | |
247 // command line. | |
248 const char kGoogleUpdateIsMachineEnvVar[] = "GoogleUpdateIsMachine"; | |
249 | |
250 const wchar_t kOptionAppHostIsLauncher[] = L"app-host-is-launcher"; | 245 const wchar_t kOptionAppHostIsLauncher[] = L"app-host-is-launcher"; |
251 const wchar_t kOptionMultiInstall[] = L"multi-install"; | 246 const wchar_t kOptionMultiInstall[] = L"multi-install"; |
252 const wchar_t kOptionReadyMode[] = L"ready-mode"; | 247 const wchar_t kOptionReadyMode[] = L"ready-mode"; |
253 | 248 |
254 // Chrome channel display names. | 249 // Chrome channel display names. |
255 const wchar_t kChromeChannelUnknown[] = L"unknown"; | 250 const wchar_t kChromeChannelUnknown[] = L"unknown"; |
256 const wchar_t kChromeChannelCanary[] = L"canary"; | 251 const wchar_t kChromeChannelCanary[] = L"canary"; |
257 const wchar_t kChromeChannelDev[] = L"dev"; | 252 const wchar_t kChromeChannelDev[] = L"dev"; |
258 const wchar_t kChromeChannelBeta[] = L"beta"; | 253 const wchar_t kChromeChannelBeta[] = L"beta"; |
259 const wchar_t kChromeChannelStable[] = L""; | 254 const wchar_t kChromeChannelStable[] = L""; |
260 | 255 |
261 const size_t kMaxAppModelIdLength = 64U; | 256 const size_t kMaxAppModelIdLength = 64U; |
262 | 257 |
263 } // namespace installer | 258 } // namespace installer |
OLD | NEW |