Index: chrome/installer/util/copy_tree_work_item.cc |
diff --git a/chrome/installer/util/copy_tree_work_item.cc b/chrome/installer/util/copy_tree_work_item.cc |
index 156d7977449af23b14b0de6c166b7a8c635f6133..57ef3dc7364055ed193e5a1b139e9f9143bf644e 100644 |
--- a/chrome/installer/util/copy_tree_work_item.cc |
+++ b/chrome/installer/util/copy_tree_work_item.cc |
@@ -28,7 +28,7 @@ |
copied_to_alternate_path_(false) { |
} |
-bool CopyTreeWorkItem::DoImpl() { |
+bool CopyTreeWorkItem::Do() { |
if (!base::PathExists(source_path_)) { |
LOG(ERROR) << source_path_.value() << " does not exist"; |
return false; |
@@ -103,7 +103,7 @@ |
return true; |
} |
-void CopyTreeWorkItem::RollbackImpl() { |
+void CopyTreeWorkItem::Rollback() { |
// Normally the delete operations below should not fail unless some |
// programs like anti-virus are inspecting the files we just copied. |
// If this does happen sometimes, we may consider using Move instead of |