| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 FINISHING, // 15: Finishing the install. | 111 FINISHING, // 15: Finishing the install. |
| 112 NUM_STAGES // 16: The number of stages. | 112 NUM_STAGES // 16: The number of stages. |
| 113 }; | 113 }; |
| 114 | 114 |
| 115 // When we start reporting the numerical values from the enum, the order | 115 // When we start reporting the numerical values from the enum, the order |
| 116 // above MUST be preserved. | 116 // above MUST be preserved. |
| 117 COMPILE_ASSERT(FINISHING == 15, | 117 COMPILE_ASSERT(FINISHING == 15, |
| 118 never_ever_ever_change_InstallerStage_values_bang); | 118 never_ever_ever_change_InstallerStage_values_bang); |
| 119 | 119 |
| 120 namespace switches { | 120 namespace switches { |
| 121 extern const char kAutoLaunchChrome[]; |
| 121 extern const char kCeee[]; | 122 extern const char kCeee[]; |
| 122 extern const char kChrome[]; | 123 extern const char kChrome[]; |
| 123 extern const char kChromeFrame[]; | 124 extern const char kChromeFrame[]; |
| 124 extern const char kChromeFrameQuickEnable[]; | 125 extern const char kChromeFrameQuickEnable[]; |
| 125 extern const char kChromeFrameReadyMode[]; | 126 extern const char kChromeFrameReadyMode[]; |
| 126 extern const char kChromeFrameReadyModeOptIn[]; | 127 extern const char kChromeFrameReadyModeOptIn[]; |
| 127 extern const char kChromeFrameReadyModeTempOptOut[]; | 128 extern const char kChromeFrameReadyModeTempOptOut[]; |
| 128 extern const char kChromeFrameReadyModeEndTempOptOut[]; | 129 extern const char kChromeFrameReadyModeEndTempOptOut[]; |
| 129 extern const char kChromeSxS[]; | 130 extern const char kChromeSxS[]; |
| 130 extern const char kCreateAllShortcuts[]; | 131 extern const char kCreateAllShortcuts[]; |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 // Google Update named environment variable that implies kSystemLevel. | 198 // Google Update named environment variable that implies kSystemLevel. |
| 198 extern const char kGoogleUpdateIsMachineEnvVar[]; | 199 extern const char kGoogleUpdateIsMachineEnvVar[]; |
| 199 | 200 |
| 200 // Product options. | 201 // Product options. |
| 201 extern const wchar_t kOptionMultiInstall[]; | 202 extern const wchar_t kOptionMultiInstall[]; |
| 202 extern const wchar_t kOptionReadyMode[]; | 203 extern const wchar_t kOptionReadyMode[]; |
| 203 | 204 |
| 204 } // namespace installer | 205 } // namespace installer |
| 205 | 206 |
| 206 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ | 207 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ |
| OLD | NEW |