OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 10 #pragma once |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 NUM_STAGES // 17: The number of stages. | 116 NUM_STAGES // 17: The number of stages. |
117 }; | 117 }; |
118 | 118 |
119 // When we start reporting the numerical values from the enum, the order | 119 // When we start reporting the numerical values from the enum, the order |
120 // above MUST be preserved. | 120 // above MUST be preserved. |
121 COMPILE_ASSERT(CONFIGURE_AUTO_LAUNCH == 16, | 121 COMPILE_ASSERT(CONFIGURE_AUTO_LAUNCH == 16, |
122 never_ever_ever_change_InstallerStage_values_bang); | 122 never_ever_ever_change_InstallerStage_values_bang); |
123 | 123 |
124 namespace switches { | 124 namespace switches { |
125 extern const char kAutoLaunchChrome[]; | 125 extern const char kAutoLaunchChrome[]; |
126 extern const char kCeee[]; | |
127 extern const char kChrome[]; | 126 extern const char kChrome[]; |
128 extern const char kChromeFrame[]; | 127 extern const char kChromeFrame[]; |
129 extern const char kChromeFrameQuickEnable[]; | 128 extern const char kChromeFrameQuickEnable[]; |
130 extern const char kChromeFrameReadyMode[]; | 129 extern const char kChromeFrameReadyMode[]; |
131 extern const char kChromeFrameReadyModeOptIn[]; | 130 extern const char kChromeFrameReadyModeOptIn[]; |
132 extern const char kChromeFrameReadyModeTempOptOut[]; | 131 extern const char kChromeFrameReadyModeTempOptOut[]; |
133 extern const char kChromeFrameReadyModeEndTempOptOut[]; | 132 extern const char kChromeFrameReadyModeEndTempOptOut[]; |
134 extern const char kChromeSxS[]; | 133 extern const char kChromeSxS[]; |
135 extern const char kCreateAllShortcuts[]; | 134 extern const char kCreateAllShortcuts[]; |
136 extern const char kCriticalUpdateVersion[]; | 135 extern const char kCriticalUpdateVersion[]; |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 // Google Update named environment variable that implies kSystemLevel. | 201 // Google Update named environment variable that implies kSystemLevel. |
203 extern const char kGoogleUpdateIsMachineEnvVar[]; | 202 extern const char kGoogleUpdateIsMachineEnvVar[]; |
204 | 203 |
205 // Product options. | 204 // Product options. |
206 extern const wchar_t kOptionMultiInstall[]; | 205 extern const wchar_t kOptionMultiInstall[]; |
207 extern const wchar_t kOptionReadyMode[]; | 206 extern const wchar_t kOptionReadyMode[]; |
208 | 207 |
209 } // namespace installer | 208 } // namespace installer |
210 | 209 |
211 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ | 210 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ |
OLD | NEW |