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. | 11 // Whether to set Chrome to launch at computer startup. |
12 const char kAutoLaunchChrome[] = "auto-launch-chrome"; | 12 const char kAutoLaunchChrome[] = "auto-launch-chrome"; |
13 | 13 |
14 // Install Chrome. | 14 // Install Chrome. |
15 // Currently this is only required when used in combination with kMultiInstall. | 15 // Currently this is only required when used in combination with kMultiInstall. |
16 const char kChrome[] = "chrome"; | 16 const char kChrome[] = "chrome"; |
17 | 17 |
18 // Install Chrome App Host. This is now interpreted as kChromeAppLauncher. | 18 // Install Chrome App Host. This is now interpreted as kChromeAppLauncher. |
19 // TODO(huangs): Remove by M27. | 19 // TODO(huangs): Remove by M27. |
20 const char kChromeAppHostDeprecated[] = "app-host"; | 20 const char kChromeAppHostDeprecated[] = "app-host"; |
21 | 21 |
22 // Install Chrome App Launcher, which subsumes Chrome App Host, i.e., | 22 // Install Chrome App Launcher, which subsumes Chrome App Host, i.e., |
23 // App Launcher install converts App Host to App Launcher, and all subsequent | 23 // App Launcher install converts App Host to App Launcher, and all subsequent |
24 // App Host updates/uninstalls become App Launcher updates/uninstalls. | 24 // App Host updates/uninstalls become App Launcher updates/uninstalls. |
25 const char kChromeAppLauncher[] = "app-launcher"; | 25 const char kChromeAppLauncher[] = "app-launcher"; |
26 | 26 |
27 // Install Chrome Frame. | 27 // Install Chrome Frame. |
28 const char kChromeFrame[] = "chrome-frame"; | 28 const char kChromeFrame[] = "chrome-frame"; |
29 | 29 |
30 // Installs Chrome Frame from an already installed multi-install of Chrome. | |
31 const char kChromeFrameQuickEnable[] = "quick-enable-cf"; | |
32 | |
33 // Run the installer for Chrome SxS. | 30 // Run the installer for Chrome SxS. |
34 const char kChromeSxS[] = "chrome-sxs"; | 31 const char kChromeSxS[] = "chrome-sxs"; |
35 | 32 |
36 // Create shortcuts for this user to point to a system-level install (which | 33 // Create shortcuts for this user to point to a system-level install (which |
37 // must already be installed on the machine). The shortcuts created will | 34 // must already be installed on the machine). The shortcuts created will |
38 // match the preferences of the already present system-level install as such | 35 // match the preferences of the already present system-level install as such |
39 // this option is not compatible with any other installer options. | 36 // this option is not compatible with any other installer options. |
40 const char kConfigureUserSettings[] = "configure-user-settings"; | 37 const char kConfigureUserSettings[] = "configure-user-settings"; |
41 | 38 |
42 // The version number of an update containing critical fixes, for which an | 39 // The version number of an update containing critical fixes, for which an |
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
263 const wchar_t kChromeChannelDev[] = L"dev"; | 260 const wchar_t kChromeChannelDev[] = L"dev"; |
264 const wchar_t kChromeChannelBeta[] = L"beta"; | 261 const wchar_t kChromeChannelBeta[] = L"beta"; |
265 const wchar_t kChromeChannelStable[] = L""; | 262 const wchar_t kChromeChannelStable[] = L""; |
266 | 263 |
267 const size_t kMaxAppModelIdLength = 64U; | 264 const size_t kMaxAppModelIdLength = 64U; |
268 | 265 |
269 const char kCourgette[] = "courgette"; | 266 const char kCourgette[] = "courgette"; |
270 const char kBsdiff[] = "bsdiff"; | 267 const char kBsdiff[] = "bsdiff"; |
271 | 268 |
272 } // namespace installer | 269 } // namespace installer |
OLD | NEW |