| 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 declarations of the installer functions that build | 5 // This file contains the declarations of the installer functions that build |
| 6 // the WorkItemList used to install the application. | 6 // the WorkItemList used to install the application. |
| 7 | 7 |
| 8 #ifndef CHROME_INSTALLER_SETUP_INSTALL_WORKER_H_ | 8 #ifndef CHROME_INSTALLER_SETUP_INSTALL_WORKER_H_ |
| 9 #define CHROME_INSTALLER_SETUP_INSTALL_WORKER_H_ | 9 #define CHROME_INSTALLER_SETUP_INSTALL_WORKER_H_ |
| 10 | 10 |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 const base::Version& new_version, | 143 const base::Version& new_version, |
| 144 const Product& product, | 144 const Product& product, |
| 145 WorkItemList* list); | 145 WorkItemList* list); |
| 146 | 146 |
| 147 // Adds Active Setup registration for sytem-level setup to be called by Windows | 147 // Adds Active Setup registration for sytem-level setup to be called by Windows |
| 148 // on user-login post-install/update. | 148 // on user-login post-install/update. |
| 149 // This method should be called for installation only. | 149 // This method should be called for installation only. |
| 150 // |product|: The product being installed. This method is a no-op if this is | 150 // |product|: The product being installed. This method is a no-op if this is |
| 151 // anything other than system-level Chrome/Chromium. | 151 // anything other than system-level Chrome/Chromium. |
| 152 void AddActiveSetupWorkItems(const InstallerState& installer_state, | 152 void AddActiveSetupWorkItems(const InstallerState& installer_state, |
| 153 const base::FilePath& setup_path, | |
| 154 const base::Version& new_version, | 153 const base::Version& new_version, |
| 155 const Product& product, | 154 const Product& product, |
| 156 WorkItemList* list); | 155 WorkItemList* list); |
| 157 | 156 |
| 158 // Unregisters the "opv" version of ChromeLauncher from IE's low rights | 157 // Unregisters the "opv" version of ChromeLauncher from IE's low rights |
| 159 // elevation policy. | 158 // elevation policy. |
| 160 void AddDeleteOldIELowRightsPolicyWorkItems( | 159 void AddDeleteOldIELowRightsPolicyWorkItems( |
| 161 const InstallerState& installer_state, | 160 const InstallerState& installer_state, |
| 162 WorkItemList* install_list); | 161 WorkItemList* install_list); |
| 163 | 162 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 180 WorkItemList* install_list); | 179 WorkItemList* install_list); |
| 181 | 180 |
| 182 // Adds work items to remove "quick-enable-cf" from the multi-installer | 181 // Adds work items to remove "quick-enable-cf" from the multi-installer |
| 183 // binaries' version key. | 182 // binaries' version key. |
| 184 void AddQuickEnableChromeFrameWorkItems(const InstallerState& installer_state, | 183 void AddQuickEnableChromeFrameWorkItems(const InstallerState& installer_state, |
| 185 WorkItemList* work_item_list); | 184 WorkItemList* work_item_list); |
| 186 | 185 |
| 187 } // namespace installer | 186 } // namespace installer |
| 188 | 187 |
| 189 #endif // CHROME_INSTALLER_SETUP_INSTALL_WORKER_H_ | 188 #endif // CHROME_INSTALLER_SETUP_INSTALL_WORKER_H_ |
| OLD | NEW |