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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 extern const char kUninstallMetricsName[]; | 222 extern const char kUninstallMetricsName[]; |
223 extern const wchar_t kUninstallStringField[]; | 223 extern const wchar_t kUninstallStringField[]; |
224 | 224 |
225 // Google Update installer result API | 225 // Google Update installer result API |
226 extern const wchar_t kInstallerError[]; | 226 extern const wchar_t kInstallerError[]; |
227 extern const wchar_t kInstallerExtraCode1[]; | 227 extern const wchar_t kInstallerExtraCode1[]; |
228 extern const wchar_t kInstallerResult[]; | 228 extern const wchar_t kInstallerResult[]; |
229 extern const wchar_t kInstallerResultUIString[]; | 229 extern const wchar_t kInstallerResultUIString[]; |
230 extern const wchar_t kInstallerSuccessLaunchCmdLine[]; | 230 extern const wchar_t kInstallerSuccessLaunchCmdLine[]; |
231 | 231 |
232 // Product options. | |
233 extern const wchar_t kOptionMultiInstall[]; | |
234 | |
235 // Chrome channel display names. | 232 // Chrome channel display names. |
236 // NOTE: Canary is not strictly a 'channel', but rather a separate product | 233 // NOTE: Canary is not strictly a 'channel', but rather a separate product |
237 // installed side-by-side. However, GoogleUpdateSettings::GetChromeChannel | 234 // installed side-by-side. However, GoogleUpdateSettings::GetChromeChannel |
238 // will return "canary" for that product. | 235 // will return "canary" for that product. |
239 extern const wchar_t kChromeChannelUnknown[]; | 236 extern const wchar_t kChromeChannelUnknown[]; |
240 extern const wchar_t kChromeChannelCanary[]; | 237 extern const wchar_t kChromeChannelCanary[]; |
241 extern const wchar_t kChromeChannelDev[]; | 238 extern const wchar_t kChromeChannelDev[]; |
242 extern const wchar_t kChromeChannelBeta[]; | 239 extern const wchar_t kChromeChannelBeta[]; |
243 extern const wchar_t kChromeChannelStable[]; | 240 extern const wchar_t kChromeChannelStable[]; |
244 extern const wchar_t kChromeChannelStableExplicit[]; | 241 extern const wchar_t kChromeChannelStableExplicit[]; |
(...skipping 10 matching lines...) Expand all Loading... |
255 extern const char kCourgette[]; | 252 extern const char kCourgette[]; |
256 extern const char kBsdiff[]; | 253 extern const char kBsdiff[]; |
257 | 254 |
258 // Name of the allocator (and associated file) for storing histograms to be | 255 // Name of the allocator (and associated file) for storing histograms to be |
259 // reported by Chrome during its next upload. | 256 // reported by Chrome during its next upload. |
260 extern const char kSetupHistogramAllocatorName[]; | 257 extern const char kSetupHistogramAllocatorName[]; |
261 | 258 |
262 } // namespace installer | 259 } // namespace installer |
263 | 260 |
264 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ | 261 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ |
OLD | NEW |