| 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 const base::Version& new_version, | 151 const base::Version& new_version, |
| 152 const Product& product, | 152 const Product& product, |
| 153 WorkItemList* list); | 153 WorkItemList* list); |
| 154 | 154 |
| 155 // Unregisters the "opv" version of ChromeLauncher from IE's low rights | 155 // Unregisters the "opv" version of ChromeLauncher from IE's low rights |
| 156 // elevation policy. | 156 // elevation policy. |
| 157 void AddDeleteOldIELowRightsPolicyWorkItems( | 157 void AddDeleteOldIELowRightsPolicyWorkItems( |
| 158 const InstallerState& installer_state, | 158 const InstallerState& installer_state, |
| 159 WorkItemList* install_list); | 159 WorkItemList* install_list); |
| 160 | 160 |
| 161 // Adds work items to copy IE low rights policies for an in-use update. |
| 162 void AddCopyIELowRightsPolicyWorkItems(const InstallerState& installer_state, |
| 163 WorkItemList* install_list); |
| 164 |
| 161 // Utility method currently shared between install.cc and install_worker.cc | 165 // Utility method currently shared between install.cc and install_worker.cc |
| 162 void AppendUninstallCommandLineFlags(const InstallerState& installer_state, | 166 void AppendUninstallCommandLineFlags(const InstallerState& installer_state, |
| 163 const Product& product, | 167 const Product& product, |
| 164 CommandLine* uninstall_cmd); | 168 CommandLine* uninstall_cmd); |
| 165 | 169 |
| 166 // Refreshes the elevation policy on platforms where it is supported. | 170 // Refreshes the elevation policy on platforms where it is supported. |
| 167 void RefreshElevationPolicy(); | 171 void RefreshElevationPolicy(); |
| 168 | 172 |
| 169 // Adds work items to add or remove the "on-os-upgrade" command to |product|'s | 173 // Adds work items to add or remove the "on-os-upgrade" command to |product|'s |
| 170 // version key on the basis of the current operation (represented in | 174 // version key on the basis of the current operation (represented in |
| (...skipping 16 matching lines...) Expand all Loading... |
| 187 WorkItemList* work_item_list); | 191 WorkItemList* work_item_list); |
| 188 | 192 |
| 189 // Adds work items to remove "quick-enable-cf" from the multi-installer | 193 // Adds work items to remove "quick-enable-cf" from the multi-installer |
| 190 // binaries' version key. | 194 // binaries' version key. |
| 191 void AddQuickEnableChromeFrameWorkItems(const InstallerState& installer_state, | 195 void AddQuickEnableChromeFrameWorkItems(const InstallerState& installer_state, |
| 192 WorkItemList* work_item_list); | 196 WorkItemList* work_item_list); |
| 193 | 197 |
| 194 } // namespace installer | 198 } // namespace installer |
| 195 | 199 |
| 196 #endif // CHROME_INSTALLER_SETUP_INSTALL_WORKER_H_ | 200 #endif // CHROME_INSTALLER_SETUP_INSTALL_WORKER_H_ |
| OLD | NEW |