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

Unified Diff: chrome/test/mini_installer_test/run_all_unittests.cc

Issue 18332014: Move Copy* into the base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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/test/mini_installer_test/run_all_unittests.cc
diff --git a/chrome/test/mini_installer_test/run_all_unittests.cc b/chrome/test/mini_installer_test/run_all_unittests.cc
index d4d69b04dfa6615662581e3418de0591ff120cf3..0fd6b810a595979d91f3be8e002b1c02401bb1ca 100644
--- a/chrome/test/mini_installer_test/run_all_unittests.cc
+++ b/chrome/test/mini_installer_test/run_all_unittests.cc
@@ -34,7 +34,7 @@ void BackUpProfile(bool chrome_frame) {
// If yes, will delete and create new one.
if (file_util::PathExists(backup_path))
base::Delete(backup_path, true);
- file_util::CopyDirectory(path, backup_path, true);
+ base::CopyDirectory(path, backup_path, true);
} else {
printf("Chrome is not installed. Will not take any backup\n");
}

Powered by Google App Engine
This is Rietveld 408576698