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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 extern const wchar_t kGoogleChromeInstallSubDir2[]; | 224 extern const wchar_t kGoogleChromeInstallSubDir2[]; |
225 extern const wchar_t kInstallBinaryDir[]; | 225 extern const wchar_t kInstallBinaryDir[]; |
226 extern const wchar_t kInstallerDir[]; | 226 extern const wchar_t kInstallerDir[]; |
227 extern const wchar_t kInstallTempDir[]; | 227 extern const wchar_t kInstallTempDir[]; |
228 extern const wchar_t kLnkExt[]; | 228 extern const wchar_t kLnkExt[]; |
229 extern const wchar_t kNaClExe[]; | 229 extern const wchar_t kNaClExe[]; |
230 extern const wchar_t kSetupExe[]; | 230 extern const wchar_t kSetupExe[]; |
231 extern const wchar_t kSxSSuffix[]; | 231 extern const wchar_t kSxSSuffix[]; |
232 extern const wchar_t kUninstallArgumentsField[]; | 232 extern const wchar_t kUninstallArgumentsField[]; |
233 extern const wchar_t kUninstallDisplayNameField[]; | 233 extern const wchar_t kUninstallDisplayNameField[]; |
| 234 extern const wchar_t kUninstallDisplayVersionField[]; |
234 extern const wchar_t kUninstallInstallationDate[]; | 235 extern const wchar_t kUninstallInstallationDate[]; |
235 extern const char kUninstallMetricsName[]; | 236 extern const char kUninstallMetricsName[]; |
236 extern const wchar_t kUninstallStringField[]; | 237 extern const wchar_t kUninstallStringField[]; |
237 | 238 |
238 // Google Update installer result API | 239 // Google Update installer result API |
239 extern const wchar_t kInstallerError[]; | 240 extern const wchar_t kInstallerError[]; |
240 extern const wchar_t kInstallerExtraCode1[]; | 241 extern const wchar_t kInstallerExtraCode1[]; |
241 extern const wchar_t kInstallerResult[]; | 242 extern const wchar_t kInstallerResult[]; |
242 extern const wchar_t kInstallerResultUIString[]; | 243 extern const wchar_t kInstallerResultUIString[]; |
243 extern const wchar_t kInstallerSuccessLaunchCmdLine[]; | 244 extern const wchar_t kInstallerSuccessLaunchCmdLine[]; |
(...skipping 20 matching lines...) Expand all Loading... |
264 const int kCourgetteErrorOffset = 300; | 265 const int kCourgetteErrorOffset = 300; |
265 const int kBsdiffErrorOffset = 600; | 266 const int kBsdiffErrorOffset = 600; |
266 | 267 |
267 // Arguments to --patch switch | 268 // Arguments to --patch switch |
268 extern const char kCourgette[]; | 269 extern const char kCourgette[]; |
269 extern const char kBsdiff[]; | 270 extern const char kBsdiff[]; |
270 | 271 |
271 } // namespace installer | 272 } // namespace installer |
272 | 273 |
273 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ | 274 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ |
OLD | NEW |