| OLD | NEW |
| (Empty) |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_INSTALLER_UTIL_DELETE_OLD_VERSIONS_H_ | |
| 6 #define CHROME_INSTALLER_UTIL_DELETE_OLD_VERSIONS_H_ | |
| 7 | |
| 8 class WorkItemList; | |
| 9 | |
| 10 namespace installer { | |
| 11 | |
| 12 class InstallerState; | |
| 13 | |
| 14 // Adds to |work_item_list| a WorkItem which deletes files that belong to old | |
| 15 // versions of Chrome. chrome.exe, new_chrome.exe and their associated version | |
| 16 // directories are never deleted. Also, no file is deleted for a given version | |
| 17 // if a .exe or .dll file for that version is in use. |installer_state| must be | |
| 18 // alive when |work_item_list| is executed. | |
| 19 void AddDeleteOldVersionsWorkItem(const InstallerState& installer_state, | |
| 20 WorkItemList* work_item_list); | |
| 21 | |
| 22 } // namespace installer | |
| 23 | |
| 24 #endif // CHROME_INSTALLER_UTIL_DELETE_OLD_VERSIONS_H_ | |
| OLD | NEW |