| 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 const base::FilePath& setup_path, | 187 const base::FilePath& setup_path, |
| 188 const base::Version& new_version, | 188 const base::Version& new_version, |
| 189 const Product& product, | 189 const Product& product, |
| 190 WorkItemList* work_item_list); | 190 WorkItemList* work_item_list); |
| 191 | 191 |
| 192 // Adds work items to remove "quick-enable-cf" from the multi-installer | 192 // Adds work items to remove "quick-enable-cf" from the multi-installer |
| 193 // binaries' version key. | 193 // binaries' version key. |
| 194 void AddQuickEnableChromeFrameWorkItems(const InstallerState& installer_state, | 194 void AddQuickEnableChromeFrameWorkItems(const InstallerState& installer_state, |
| 195 WorkItemList* work_item_list); | 195 WorkItemList* work_item_list); |
| 196 | 196 |
| 197 // Exposed only for testing. There is almost zero chance you want to call this. |
| 198 base::string16 ConvertGUIDToMSIUserDataFormat(const base::string16& guid); |
| 199 |
| 197 } // namespace installer | 200 } // namespace installer |
| 198 | 201 |
| 199 #endif // CHROME_INSTALLER_SETUP_INSTALL_WORKER_H_ | 202 #endif // CHROME_INSTALLER_SETUP_INSTALL_WORKER_H_ |
| OLD | NEW |