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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 const wchar_t kUninstallDisplayNameField[] = L"DisplayName"; | 224 const wchar_t kUninstallDisplayNameField[] = L"DisplayName"; |
225 const char kUninstallMetricsName[] = "uninstall_metrics"; | 225 const char kUninstallMetricsName[] = "uninstall_metrics"; |
226 const wchar_t kUninstallInstallationDate[] = L"installation_date"; | 226 const wchar_t kUninstallInstallationDate[] = L"installation_date"; |
227 const wchar_t kInstallerError[] = L"InstallerError"; | 227 const wchar_t kInstallerError[] = L"InstallerError"; |
228 const wchar_t kInstallerExtraCode1[] = L"InstallerExtraCode1"; | 228 const wchar_t kInstallerExtraCode1[] = L"InstallerExtraCode1"; |
229 const wchar_t kInstallerResult[] = L"InstallerResult"; | 229 const wchar_t kInstallerResult[] = L"InstallerResult"; |
230 const wchar_t kInstallerResultUIString[] = L"InstallerResultUIString"; | 230 const wchar_t kInstallerResultUIString[] = L"InstallerResultUIString"; |
231 const wchar_t kInstallerSuccessLaunchCmdLine[] = | 231 const wchar_t kInstallerSuccessLaunchCmdLine[] = |
232 L"InstallerSuccessLaunchCmdLine"; | 232 L"InstallerSuccessLaunchCmdLine"; |
233 | 233 |
234 const wchar_t kOptionMultiInstall[] = L"multi-install"; | |
235 | |
236 // Chrome channel display names. | 234 // Chrome channel display names. |
237 const wchar_t kChromeChannelUnknown[] = L"unknown"; | 235 const wchar_t kChromeChannelUnknown[] = L"unknown"; |
238 const wchar_t kChromeChannelCanary[] = L"canary"; | 236 const wchar_t kChromeChannelCanary[] = L"canary"; |
239 const wchar_t kChromeChannelDev[] = L"dev"; | 237 const wchar_t kChromeChannelDev[] = L"dev"; |
240 const wchar_t kChromeChannelBeta[] = L"beta"; | 238 const wchar_t kChromeChannelBeta[] = L"beta"; |
241 const wchar_t kChromeChannelStable[] = L""; | 239 const wchar_t kChromeChannelStable[] = L""; |
242 const wchar_t kChromeChannelStableExplicit[] = L"stable"; | 240 const wchar_t kChromeChannelStableExplicit[] = L"stable"; |
243 | 241 |
244 const size_t kMaxAppModelIdLength = 64U; | 242 const size_t kMaxAppModelIdLength = 64U; |
245 | 243 |
246 const char kCourgette[] = "courgette"; | 244 const char kCourgette[] = "courgette"; |
247 const char kBsdiff[] = "bsdiff"; | 245 const char kBsdiff[] = "bsdiff"; |
248 | 246 |
249 const char kSetupHistogramAllocatorName[] = "SetupMetrics"; | 247 const char kSetupHistogramAllocatorName[] = "SetupMetrics"; |
250 | 248 |
251 } // namespace installer | 249 } // namespace installer |
OLD | NEW |