| 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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 | 249 |
| 250 // Chrome channel display names. | 250 // Chrome channel display names. |
| 251 // NOTE: Canary is not strictly a 'channel', but rather a separate product | 251 // NOTE: Canary is not strictly a 'channel', but rather a separate product |
| 252 // installed side-by-side. However, GoogleUpdateSettings::GetChromeChannel | 252 // installed side-by-side. However, GoogleUpdateSettings::GetChromeChannel |
| 253 // will return "canary" for that product. | 253 // will return "canary" for that product. |
| 254 extern const wchar_t kChromeChannelUnknown[]; | 254 extern const wchar_t kChromeChannelUnknown[]; |
| 255 extern const wchar_t kChromeChannelCanary[]; | 255 extern const wchar_t kChromeChannelCanary[]; |
| 256 extern const wchar_t kChromeChannelDev[]; | 256 extern const wchar_t kChromeChannelDev[]; |
| 257 extern const wchar_t kChromeChannelBeta[]; | 257 extern const wchar_t kChromeChannelBeta[]; |
| 258 extern const wchar_t kChromeChannelStable[]; | 258 extern const wchar_t kChromeChannelStable[]; |
| 259 extern const wchar_t kChromeChannelStable64[]; |
| 259 | 260 |
| 260 extern const size_t kMaxAppModelIdLength; | 261 extern const size_t kMaxAppModelIdLength; |
| 261 | 262 |
| 262 // The range of error values for the installer, Courgette, and bsdiff is | 263 // The range of error values for the installer, Courgette, and bsdiff is |
| 263 // overlapping. These offset values disambiguate between different sets | 264 // overlapping. These offset values disambiguate between different sets |
| 264 // of errors by shifting the values up with the specified offset. | 265 // of errors by shifting the values up with the specified offset. |
| 265 const int kCourgetteErrorOffset = 300; | 266 const int kCourgetteErrorOffset = 300; |
| 266 const int kBsdiffErrorOffset = 600; | 267 const int kBsdiffErrorOffset = 600; |
| 267 | 268 |
| 268 // Arguments to --patch switch | 269 // Arguments to --patch switch |
| 269 extern const char kCourgette[]; | 270 extern const char kCourgette[]; |
| 270 extern const char kBsdiff[]; | 271 extern const char kBsdiff[]; |
| 271 | 272 |
| 272 } // namespace installer | 273 } // namespace installer |
| 273 | 274 |
| 274 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ | 275 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ |
| OLD | NEW |