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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 extern const char kVerboseLogging[]; | 173 extern const char kVerboseLogging[]; |
174 extern const char kShowEula[]; | 174 extern const char kShowEula[]; |
175 extern const char kShowEulaForMetro[]; | 175 extern const char kShowEulaForMetro[]; |
176 extern const char kInactiveUserToast[]; | 176 extern const char kInactiveUserToast[]; |
177 extern const char kSystemLevelToast[]; | 177 extern const char kSystemLevelToast[]; |
178 extern const char kExperimentGroup[]; | 178 extern const char kExperimentGroup[]; |
179 extern const char kToastResultsKey[]; | 179 extern const char kToastResultsKey[]; |
180 } // namespace switches | 180 } // namespace switches |
181 | 181 |
182 extern const wchar_t kActiveSetupExe[]; | 182 extern const wchar_t kActiveSetupExe[]; |
183 extern const wchar_t kChromeAppHostExe[]; | 183 extern const wchar_t kChromeAppHostExe[]; // Legacy. |
184 extern const wchar_t kChromeDll[]; | 184 extern const wchar_t kChromeDll[]; |
185 extern const wchar_t kChromeExe[]; | 185 extern const wchar_t kChromeExe[]; |
186 extern const wchar_t kChromeFrameDll[]; | 186 extern const wchar_t kChromeFrameDll[]; |
187 extern const wchar_t kChromeFrameHelperExe[]; | 187 extern const wchar_t kChromeFrameHelperExe[]; |
188 extern const wchar_t kChromeFrameHelperWndClass[]; | 188 extern const wchar_t kChromeFrameHelperWndClass[]; |
189 extern const wchar_t kChromeFrameReadyModeField[]; | 189 extern const wchar_t kChromeFrameReadyModeField[]; |
190 extern const wchar_t kChromeLauncherExe[]; | 190 extern const wchar_t kChromeLauncherExe[]; |
191 extern const wchar_t kChromeOldExe[]; | 191 extern const wchar_t kChromeOldExe[]; |
192 extern const wchar_t kChromeNewExe[]; | 192 extern const wchar_t kChromeNewExe[]; |
193 extern const wchar_t kCmdInstallApp[]; | 193 extern const wchar_t kCmdInstallApp[]; |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 extern const wchar_t kChromeChannelCanary[]; | 233 extern const wchar_t kChromeChannelCanary[]; |
234 extern const wchar_t kChromeChannelDev[]; | 234 extern const wchar_t kChromeChannelDev[]; |
235 extern const wchar_t kChromeChannelBeta[]; | 235 extern const wchar_t kChromeChannelBeta[]; |
236 extern const wchar_t kChromeChannelStable[]; | 236 extern const wchar_t kChromeChannelStable[]; |
237 | 237 |
238 extern const size_t kMaxAppModelIdLength; | 238 extern const size_t kMaxAppModelIdLength; |
239 | 239 |
240 } // namespace installer | 240 } // namespace installer |
241 | 241 |
242 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ | 242 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ |
OLD | NEW |