| Index: chrome/installer/util/move_tree_work_item.cc
|
| diff --git a/chrome/installer/util/move_tree_work_item.cc b/chrome/installer/util/move_tree_work_item.cc
|
| index ef682348c636a56dcd19f37c7607bc75f1c19547..a21db3000589e757adb75a06b5b0415ad7def781 100644
|
| --- a/chrome/installer/util/move_tree_work_item.cc
|
| +++ b/chrome/installer/util/move_tree_work_item.cc
|
| @@ -27,7 +27,7 @@
|
| duplicate_option_(duplicate_option) {
|
| }
|
|
|
| -bool MoveTreeWorkItem::DoImpl() {
|
| +bool MoveTreeWorkItem::Do() {
|
| if (!base::PathExists(source_path_)) {
|
| LOG(ERROR) << source_path_.value() << " does not exist";
|
| return false;
|
| @@ -99,7 +99,7 @@
|
| return true;
|
| }
|
|
|
| -void MoveTreeWorkItem::RollbackImpl() {
|
| +void MoveTreeWorkItem::Rollback() {
|
| if (moved_to_dest_path_ && !base::Move(dest_path_, source_path_)) {
|
| PLOG(ERROR) << "Can not move " << dest_path_.value()
|
| << " to " << source_path_.value();
|
|
|