| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef CHROME_TOOLS_DISABLE_OUTDATED_BUILD_DETECTOR_CONSTANTS_H_ | 5 #ifndef CHROME_TOOLS_DISABLE_OUTDATED_BUILD_DETECTOR_CONSTANTS_H_ |
| 6 #define CHROME_TOOLS_DISABLE_OUTDATED_BUILD_DETECTOR_CONSTANTS_H_ | 6 #define CHROME_TOOLS_DISABLE_OUTDATED_BUILD_DETECTOR_CONSTANTS_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 namespace switches { | 10 namespace switches { |
| 11 | 11 |
| 12 extern const char kMultiInstall[]; | 12 extern const wchar_t kMultiInstall[]; |
| 13 extern const char kSystemLevel[]; | 13 extern const wchar_t kSystemLevel[]; |
| 14 | 14 |
| 15 } // namespace switches | 15 } // namespace switches |
| 16 | 16 |
| 17 namespace env { | 17 namespace env { |
| 18 | 18 |
| 19 extern const char kGoogleUpdateIsMachine[]; | 19 extern const wchar_t kGoogleUpdateIsMachine[]; |
| 20 | 20 |
| 21 } // namespace env | 21 } // namespace env |
| 22 | 22 |
| 23 extern const wchar_t kAOHY[]; | 23 extern const wchar_t kAOHY[]; |
| 24 extern const wchar_t kBrand[]; | 24 extern const wchar_t kBrand[]; |
| 25 extern const wchar_t kInstallerResult[]; | 25 extern const wchar_t kInstallerResult[]; |
| 26 extern const wchar_t kInstallerError[]; | 26 extern const wchar_t kInstallerError[]; |
| 27 extern const wchar_t kInstallerExtraCode1[]; | 27 extern const wchar_t kInstallerExtraCode1[]; |
| 28 extern const wchar_t kUninstallArguments[]; | 28 extern const wchar_t kUninstallArguments[]; |
| 29 | 29 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 49 FAILED_READING_BRAND = 1013, // RegQueryValueEx failed. | 49 FAILED_READING_BRAND = 1013, // RegQueryValueEx failed. |
| 50 FAILED_WRITING_BRAND = 1014, // RegSetValueEx failed. | 50 FAILED_WRITING_BRAND = 1014, // RegSetValueEx failed. |
| 51 }; | 51 }; |
| 52 | 52 |
| 53 // Values defined by Google Update. | 53 // Values defined by Google Update. |
| 54 enum class InstallerResult : uint32_t { | 54 enum class InstallerResult : uint32_t { |
| 55 FAILED_CUSTOM_ERROR = 1, | 55 FAILED_CUSTOM_ERROR = 1, |
| 56 }; | 56 }; |
| 57 | 57 |
| 58 #endif // CHROME_TOOLS_DISABLE_OUTDATED_BUILD_DETECTOR_CONSTANTS_H_ | 58 #endif // CHROME_TOOLS_DISABLE_OUTDATED_BUILD_DETECTOR_CONSTANTS_H_ |
| OLD | NEW |