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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 const wchar_t kInstallBinaryDir[] = L"Application"; | 237 const wchar_t kInstallBinaryDir[] = L"Application"; |
238 const wchar_t kInstallerDir[] = L"Installer"; | 238 const wchar_t kInstallerDir[] = L"Installer"; |
239 const wchar_t kInstallTempDir[] = L"Temp"; | 239 const wchar_t kInstallTempDir[] = L"Temp"; |
240 const wchar_t kLnkExt[] = L".lnk"; | 240 const wchar_t kLnkExt[] = L".lnk"; |
241 const wchar_t kNaClExe[] = L"nacl64.exe"; | 241 const wchar_t kNaClExe[] = L"nacl64.exe"; |
242 const wchar_t kSetupExe[] = L"setup.exe"; | 242 const wchar_t kSetupExe[] = L"setup.exe"; |
243 const wchar_t kSxSSuffix[] = L" SxS"; | 243 const wchar_t kSxSSuffix[] = L" SxS"; |
244 const wchar_t kUninstallStringField[] = L"UninstallString"; | 244 const wchar_t kUninstallStringField[] = L"UninstallString"; |
245 const wchar_t kUninstallArgumentsField[] = L"UninstallArguments"; | 245 const wchar_t kUninstallArgumentsField[] = L"UninstallArguments"; |
246 const wchar_t kUninstallDisplayNameField[] = L"DisplayName"; | 246 const wchar_t kUninstallDisplayNameField[] = L"DisplayName"; |
| 247 const wchar_t kUninstallDisplayVersionField[] = L"DisplayVersion"; |
247 const char kUninstallMetricsName[] = "uninstall_metrics"; | 248 const char kUninstallMetricsName[] = "uninstall_metrics"; |
248 const wchar_t kUninstallInstallationDate[] = L"installation_date"; | 249 const wchar_t kUninstallInstallationDate[] = L"installation_date"; |
249 const wchar_t kInstallerError[] = L"InstallerError"; | 250 const wchar_t kInstallerError[] = L"InstallerError"; |
250 const wchar_t kInstallerExtraCode1[] = L"InstallerExtraCode1"; | 251 const wchar_t kInstallerExtraCode1[] = L"InstallerExtraCode1"; |
251 const wchar_t kInstallerResult[] = L"InstallerResult"; | 252 const wchar_t kInstallerResult[] = L"InstallerResult"; |
252 const wchar_t kInstallerResultUIString[] = L"InstallerResultUIString"; | 253 const wchar_t kInstallerResultUIString[] = L"InstallerResultUIString"; |
253 const wchar_t kInstallerSuccessLaunchCmdLine[] = | 254 const wchar_t kInstallerSuccessLaunchCmdLine[] = |
254 L"InstallerSuccessLaunchCmdLine"; | 255 L"InstallerSuccessLaunchCmdLine"; |
255 | 256 |
256 const wchar_t kOptionMultiInstall[] = L"multi-install"; | 257 const wchar_t kOptionMultiInstall[] = L"multi-install"; |
257 | 258 |
258 // Chrome channel display names. | 259 // Chrome channel display names. |
259 const wchar_t kChromeChannelUnknown[] = L"unknown"; | 260 const wchar_t kChromeChannelUnknown[] = L"unknown"; |
260 const wchar_t kChromeChannelCanary[] = L"canary"; | 261 const wchar_t kChromeChannelCanary[] = L"canary"; |
261 const wchar_t kChromeChannelDev[] = L"dev"; | 262 const wchar_t kChromeChannelDev[] = L"dev"; |
262 const wchar_t kChromeChannelBeta[] = L"beta"; | 263 const wchar_t kChromeChannelBeta[] = L"beta"; |
263 const wchar_t kChromeChannelStable[] = L""; | 264 const wchar_t kChromeChannelStable[] = L""; |
264 const wchar_t kChromeChannelStableExplicit[] = L"stable"; | 265 const wchar_t kChromeChannelStableExplicit[] = L"stable"; |
265 | 266 |
266 const size_t kMaxAppModelIdLength = 64U; | 267 const size_t kMaxAppModelIdLength = 64U; |
267 | 268 |
268 const char kCourgette[] = "courgette"; | 269 const char kCourgette[] = "courgette"; |
269 const char kBsdiff[] = "bsdiff"; | 270 const char kBsdiff[] = "bsdiff"; |
270 | 271 |
271 } // namespace installer | 272 } // namespace installer |
OLD | NEW |