| 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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 L"InstallerSuccessLaunchCmdLine"; | 256 L"InstallerSuccessLaunchCmdLine"; |
| 257 | 257 |
| 258 const wchar_t kOptionMultiInstall[] = L"multi-install"; | 258 const wchar_t kOptionMultiInstall[] = L"multi-install"; |
| 259 | 259 |
| 260 // Chrome channel display names. | 260 // Chrome channel display names. |
| 261 const wchar_t kChromeChannelUnknown[] = L"unknown"; | 261 const wchar_t kChromeChannelUnknown[] = L"unknown"; |
| 262 const wchar_t kChromeChannelCanary[] = L"canary"; | 262 const wchar_t kChromeChannelCanary[] = L"canary"; |
| 263 const wchar_t kChromeChannelDev[] = L"dev"; | 263 const wchar_t kChromeChannelDev[] = L"dev"; |
| 264 const wchar_t kChromeChannelBeta[] = L"beta"; | 264 const wchar_t kChromeChannelBeta[] = L"beta"; |
| 265 const wchar_t kChromeChannelStable[] = L""; | 265 const wchar_t kChromeChannelStable[] = L""; |
| 266 const wchar_t kChromeChannelStable64[] = L"x64-stable"; |
| 266 | 267 |
| 267 const size_t kMaxAppModelIdLength = 64U; | 268 const size_t kMaxAppModelIdLength = 64U; |
| 268 | 269 |
| 269 const char kCourgette[] = "courgette"; | 270 const char kCourgette[] = "courgette"; |
| 270 const char kBsdiff[] = "bsdiff"; | 271 const char kBsdiff[] = "bsdiff"; |
| 271 | 272 |
| 272 } // namespace installer | 273 } // namespace installer |
| OLD | NEW |