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 // This file contains the specification of setup main functions. | 5 // This file contains the specification of setup main functions. |
6 | 6 |
7 #ifndef CHROME_INSTALLER_SETUP_INSTALL_H_ | 7 #ifndef CHROME_INSTALLER_SETUP_INSTALL_H_ |
8 #define CHROME_INSTALLER_SETUP_INSTALL_H_ | 8 #define CHROME_INSTALLER_SETUP_INSTALL_H_ |
9 | 9 |
10 #include <vector> | 10 #include <vector> |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 InstallStatus InstallOrUpdateProduct( | 95 InstallStatus InstallOrUpdateProduct( |
96 const InstallationState& original_state, | 96 const InstallationState& original_state, |
97 const InstallerState& installer_state, | 97 const InstallerState& installer_state, |
98 const FilePath& setup_path, | 98 const FilePath& setup_path, |
99 const FilePath& archive_path, | 99 const FilePath& archive_path, |
100 const FilePath& install_temp_path, | 100 const FilePath& install_temp_path, |
101 const FilePath& prefs_path, | 101 const FilePath& prefs_path, |
102 const installer::MasterPreferences& prefs, | 102 const installer::MasterPreferences& prefs, |
103 const Version& new_version); | 103 const Version& new_version); |
104 | 104 |
| 105 // Performs installation-related tasks following an OS upgrade. |
| 106 void HandleOsUpgradeForBrowser(const InstallerState& installer_state, |
| 107 const Product& chrome, |
| 108 const FilePath& setup_exe); |
| 109 |
105 } // namespace installer | 110 } // namespace installer |
106 | 111 |
107 #endif // CHROME_INSTALLER_SETUP_INSTALL_H_ | 112 #endif // CHROME_INSTALLER_SETUP_INSTALL_H_ |
OLD | NEW |