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

Unified Diff: chrome/test/automation/proxy_launcher.cc

Issue 18332014: Move Copy* into the base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: windows Created 7 years, 5 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/automation/proxy_launcher.cc
diff --git a/chrome/test/automation/proxy_launcher.cc b/chrome/test/automation/proxy_launcher.cc
index 4b40cc18b27df2699156d5825a2d3ba00face675..97e9d3cb54120be07ce4258fa112c1612c816d7d 100644
--- a/chrome/test/automation/proxy_launcher.cc
+++ b/chrome/test/automation/proxy_launcher.cc
@@ -55,10 +55,10 @@ bool CopyDirectoryContentsNoCache(const base::FilePath& source,
for (base::FilePath cur = en.Next(); !cur.empty(); cur = en.Next()) {
base::FileEnumerator::FileInfo info = en.GetInfo();
if (info.IsDirectory()) {
- if (!file_util::CopyDirectory(cur, dest, true))
+ if (!base::CopyDirectory(cur, dest, true))
return false;
} else {
- if (!file_util::CopyFile(cur, dest.Append(cur.BaseName())))
+ if (!base::CopyFile(cur, dest.Append(cur.BaseName())))
return false;
}
}
« no previous file with comments | « chrome/installer/util/move_tree_work_item_unittest.cc ('k') | chrome/test/mini_installer_test/run_all_unittests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698