Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1163)

Unified Diff: chrome/installer/util/move_tree_work_item.h

Issue 2379543002: installer and some misc files: Change ScopedTempDir::path() to GetPath() (Closed)
Patch Set: Fix compilation failure Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/installer/util/move_tree_work_item.h
diff --git a/chrome/installer/util/move_tree_work_item.h b/chrome/installer/util/move_tree_work_item.h
index 38383d4927a6dfa9acc375d4db2b663a75b13036..f986be982fb8e41348cd87ffa52c9eb310f18c89 100644
--- a/chrome/installer/util/move_tree_work_item.h
+++ b/chrome/installer/util/move_tree_work_item.h
@@ -57,7 +57,10 @@ class MoveTreeWorkItem : public WorkItem {
base::FilePath temp_dir_;
// The temporary directory into which the original dest_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
// Whether the source was moved to dest_path_
bool moved_to_dest_path_;

Powered by Google App Engine
This is Rietveld 408576698