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; |
} |
} |