| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_INSTALLER_MINI_INSTALLER_MINI_INSTALLER_CONSTANTS_H_ | 5 #ifndef CHROME_INSTALLER_MINI_INSTALLER_MINI_INSTALLER_CONSTANTS_H_ |
| 6 #define CHROME_INSTALLER_MINI_INSTALLER_MINI_INSTALLER_CONSTANTS_H_ | 6 #define CHROME_INSTALLER_MINI_INSTALLER_MINI_INSTALLER_CONSTANTS_H_ |
| 7 | 7 |
| 8 namespace mini_installer { | 8 namespace mini_installer { |
| 9 | 9 |
| 10 // Various filenames and prefixes. | 10 // Various filenames and prefixes. |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 extern const wchar_t kMultiInstallTag[]; | 27 extern const wchar_t kMultiInstallTag[]; |
| 28 | 28 |
| 29 // The resource types that would be unpacked from the mini installer. | 29 // The resource types that would be unpacked from the mini installer. |
| 30 extern const wchar_t kBinResourceType[]; | 30 extern const wchar_t kBinResourceType[]; |
| 31 extern const wchar_t kLZCResourceType[]; | 31 extern const wchar_t kLZCResourceType[]; |
| 32 extern const wchar_t kLZMAResourceType[]; | 32 extern const wchar_t kLZMAResourceType[]; |
| 33 | 33 |
| 34 // Registry value names. | 34 // Registry value names. |
| 35 extern const wchar_t kApRegistryValue[]; | 35 extern const wchar_t kApRegistryValue[]; |
| 36 extern const wchar_t kCleanupRegistryValue[]; | 36 extern const wchar_t kCleanupRegistryValue[]; |
| 37 extern const wchar_t kInstallerErrorRegistryValue[]; | |
| 38 extern const wchar_t kInstallerExtraCode1RegistryValue[]; | |
| 39 extern const wchar_t kInstallerResultRegistryValue[]; | |
| 40 extern const wchar_t kUninstallRegistryValue[]; | 37 extern const wchar_t kUninstallRegistryValue[]; |
| 41 | 38 |
| 42 // Registry key paths. | 39 // Registry key paths. |
| 43 extern const wchar_t kClientStateKeyBase[]; | 40 extern const wchar_t kClientStateKeyBase[]; |
| 44 extern const wchar_t kCleanupRegistryKey[]; | 41 extern const wchar_t kCleanupRegistryKey[]; |
| 45 | 42 |
| 46 extern const size_t kMaxResourceSize; | 43 extern const size_t kMaxResourceSize; |
| 47 | 44 |
| 48 } // namespace mini_installer | 45 } // namespace mini_installer |
| 49 | 46 |
| 50 #endif // CHROME_INSTALLER_MINI_INSTALLER_MINI_INSTALLER_CONSTANTS_H_ | 47 #endif // CHROME_INSTALLER_MINI_INSTALLER_MINI_INSTALLER_CONSTANTS_H_ |
| OLD | NEW |