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 // Defines all install related constants that need to be used by Chrome as | 5 // Defines all install related constants that need to be used by Chrome as |
6 // well as Chrome Installer. | 6 // well as Chrome Installer. |
7 | 7 |
8 #ifndef CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ | 8 #ifndef CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ |
9 #define CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ | 9 #define CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ |
10 | 10 |
(...skipping 113 matching lines...) Loading... |
124 | 124 |
125 // When we start reporting the numerical values from the enum, the order | 125 // When we start reporting the numerical values from the enum, the order |
126 // above MUST be preserved. | 126 // above MUST be preserved. |
127 COMPILE_ASSERT(DEFERRING_TO_HIGHER_VERSION == 18, | 127 COMPILE_ASSERT(DEFERRING_TO_HIGHER_VERSION == 18, |
128 never_ever_ever_change_InstallerStage_values_bang); | 128 never_ever_ever_change_InstallerStage_values_bang); |
129 | 129 |
130 namespace switches { | 130 namespace switches { |
131 extern const char kAutoLaunchChrome[]; | 131 extern const char kAutoLaunchChrome[]; |
132 extern const char kChrome[]; | 132 extern const char kChrome[]; |
133 extern const char kChromeAppHost[]; | 133 extern const char kChromeAppHost[]; |
| 134 extern const char kChromeAppLauncher[]; |
134 extern const char kChromeFrame[]; | 135 extern const char kChromeFrame[]; |
135 extern const char kChromeFrameQuickEnable[]; | 136 extern const char kChromeFrameQuickEnable[]; |
136 extern const char kChromeFrameReadyMode[]; | 137 extern const char kChromeFrameReadyMode[]; |
137 extern const char kChromeFrameReadyModeOptIn[]; | 138 extern const char kChromeFrameReadyModeOptIn[]; |
138 extern const char kChromeFrameReadyModeTempOptOut[]; | 139 extern const char kChromeFrameReadyModeTempOptOut[]; |
139 extern const char kChromeFrameReadyModeEndTempOptOut[]; | 140 extern const char kChromeFrameReadyModeEndTempOptOut[]; |
140 extern const char kChromeSxS[]; | 141 extern const char kChromeSxS[]; |
141 extern const char kConfigureUserSettings[]; | 142 extern const char kConfigureUserSettings[]; |
142 extern const char kCriticalUpdateVersion[]; | 143 extern const char kCriticalUpdateVersion[]; |
143 extern const char kDeleteProfile[]; | 144 extern const char kDeleteProfile[]; |
(...skipping 69 matching lines...) Loading... |
213 extern const wchar_t kInstallerResult[]; | 214 extern const wchar_t kInstallerResult[]; |
214 extern const wchar_t kInstallerResultUIString[]; | 215 extern const wchar_t kInstallerResultUIString[]; |
215 extern const wchar_t kInstallerSuccessLaunchCmdLine[]; | 216 extern const wchar_t kInstallerSuccessLaunchCmdLine[]; |
216 | 217 |
217 // Google Update named environment variable that implies kSystemLevel. | 218 // Google Update named environment variable that implies kSystemLevel. |
218 extern const char kGoogleUpdateIsMachineEnvVar[]; | 219 extern const char kGoogleUpdateIsMachineEnvVar[]; |
219 | 220 |
220 // Product options. | 221 // Product options. |
221 extern const wchar_t kOptionMultiInstall[]; | 222 extern const wchar_t kOptionMultiInstall[]; |
222 extern const wchar_t kOptionReadyMode[]; | 223 extern const wchar_t kOptionReadyMode[]; |
| 224 extern const wchar_t kOptionAppHostIsLauncher[]; |
223 | 225 |
224 // Chrome channel display names. | 226 // Chrome channel display names. |
225 // NOTE: Canary is not strictly a 'channel', but rather a separate product | 227 // NOTE: Canary is not strictly a 'channel', but rather a separate product |
226 // installed side-by-side. However, GoogleUpdateSettings::GetChromeChannel | 228 // installed side-by-side. However, GoogleUpdateSettings::GetChromeChannel |
227 // will return "canary" for that product. | 229 // will return "canary" for that product. |
228 extern const wchar_t kChromeChannelUnknown[]; | 230 extern const wchar_t kChromeChannelUnknown[]; |
229 extern const wchar_t kChromeChannelCanary[]; | 231 extern const wchar_t kChromeChannelCanary[]; |
230 extern const wchar_t kChromeChannelDev[]; | 232 extern const wchar_t kChromeChannelDev[]; |
231 extern const wchar_t kChromeChannelBeta[]; | 233 extern const wchar_t kChromeChannelBeta[]; |
232 extern const wchar_t kChromeChannelStable[]; | 234 extern const wchar_t kChromeChannelStable[]; |
233 | 235 |
234 extern const size_t kMaxAppModelIdLength; | 236 extern const size_t kMaxAppModelIdLength; |
235 | 237 |
236 } // namespace installer | 238 } // namespace installer |
237 | 239 |
238 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ | 240 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ |
OLD | NEW |