| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 } // namespace switches | 83 } // namespace switches |
| 84 | 84 |
| 85 extern const wchar_t kInstallBinaryDir[]; | 85 extern const wchar_t kInstallBinaryDir[]; |
| 86 extern const wchar_t kChromeExe[]; | 86 extern const wchar_t kChromeExe[]; |
| 87 extern const wchar_t kChromeOldExe[]; | 87 extern const wchar_t kChromeOldExe[]; |
| 88 extern const wchar_t kChromeNewExe[]; | 88 extern const wchar_t kChromeNewExe[]; |
| 89 extern const wchar_t kChromeDll[]; | 89 extern const wchar_t kChromeDll[]; |
| 90 extern const wchar_t kSetupExe[]; | 90 extern const wchar_t kSetupExe[]; |
| 91 extern const wchar_t kInstallerDir[]; | 91 extern const wchar_t kInstallerDir[]; |
| 92 | 92 |
| 93 extern const wchar_t kAppPathsRegistryKey[]; | |
| 94 extern const wchar_t kAppPathsRegistryDefaultName[]; | |
| 95 extern const wchar_t kAppPathsRegistryPathName[]; | |
| 96 | |
| 97 extern const wchar_t kUninstallStringField[]; | 93 extern const wchar_t kUninstallStringField[]; |
| 98 extern const wchar_t kUninstallDisplayNameField[]; | 94 extern const wchar_t kUninstallDisplayNameField[]; |
| 99 } // namespace installer_util | 95 } // namespace installer_util |
| 100 | 96 |
| 101 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H__ | 97 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H__ |
| OLD | NEW |