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 |
11 // Whether to set Chrome to launch at computer startup. | |
12 const char kAutoLaunchChrome[] = "auto-launch-chrome"; | |
13 | |
14 // Install Chrome. | 11 // Install Chrome. |
15 // Currently this is only required when used in combination with kMultiInstall. | 12 // Currently this is only required when used in combination with kMultiInstall. |
16 const char kChrome[] = "chrome"; | 13 const char kChrome[] = "chrome"; |
17 | 14 |
18 // Install Chrome Frame. | 15 // Install Chrome Frame. |
19 const char kChromeFrame[] = "chrome-frame"; | 16 const char kChromeFrame[] = "chrome-frame"; |
20 | 17 |
21 // Run the installer for Chrome SxS. | 18 // Run the installer for Chrome SxS. |
22 const char kChromeSxS[] = "chrome-sxs"; | 19 const char kChromeSxS[] = "chrome-sxs"; |
23 | 20 |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 const wchar_t kChromeChannelBeta[] = L"beta"; | 251 const wchar_t kChromeChannelBeta[] = L"beta"; |
255 const wchar_t kChromeChannelStable[] = L""; | 252 const wchar_t kChromeChannelStable[] = L""; |
256 const wchar_t kChromeChannelStableExplicit[] = L"stable"; | 253 const wchar_t kChromeChannelStableExplicit[] = L"stable"; |
257 | 254 |
258 const size_t kMaxAppModelIdLength = 64U; | 255 const size_t kMaxAppModelIdLength = 64U; |
259 | 256 |
260 const char kCourgette[] = "courgette"; | 257 const char kCourgette[] = "courgette"; |
261 const char kBsdiff[] = "bsdiff"; | 258 const char kBsdiff[] = "bsdiff"; |
262 | 259 |
263 } // namespace installer | 260 } // namespace installer |
OLD | NEW |