Chromium Code Reviews| Index: chrome/installer/util/delete_tree_work_item.h |
| diff --git a/chrome/installer/util/delete_tree_work_item.h b/chrome/installer/util/delete_tree_work_item.h |
| index 9a144e8976cae89491ce40a08474c143598675c4..5570117eca841f7a630949f74d238ee36514d01f 100644 |
| --- a/chrome/installer/util/delete_tree_work_item.h |
| +++ b/chrome/installer/util/delete_tree_work_item.h |
| @@ -48,7 +48,10 @@ class DeleteTreeWorkItem : public WorkItem { |
| const base::FilePath temp_path_; |
| // The temporary directory into which the original root_path_ has been moved. |
| - base::ScopedTempDir backup_path_; |
| + base::ScopedTempDir backup_dir_; |
| + |
| + // The path to |backup_dir_| or empty if |backup_dir_| has not been created. |
| + base::FilePath backup_path_; |
|
vabr (Chromium)
2016/09/28 13:10:24
Another instance of the change done to copy_tree_w
|
| // Set to true once root_path_ has been moved into backup_path_. |
| bool moved_to_backup_ = false; |