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

Unified Diff: chrome_frame/test/test_with_web_server.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
« no previous file with comments | « chrome_frame/test/dll_redirector_loading_test.cc ('k') | cloud_print/common/win/install_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/test/test_with_web_server.cc
diff --git a/chrome_frame/test/test_with_web_server.cc b/chrome_frame/test/test_with_web_server.cc
index 15e16f259919ac0eef043b242a3b496c45e5167b..7ffb8360b2ac035c74a163b978ac57f65de5fbe3 100644
--- a/chrome_frame/test/test_with_web_server.cc
+++ b/chrome_frame/test/test_with_web_server.cc
@@ -110,12 +110,12 @@ void ChromeFrameTestWithWebServer::SetUpTestCase() {
CFInstance_src_path = chrome_frame_source_path.AppendASCII("CFInstance.js");
CFInstance_path_ = test_file_path_.AppendASCII("CFInstance.js");
- ASSERT_TRUE(file_util::CopyFile(CFInstance_src_path, CFInstance_path_));
+ ASSERT_TRUE(base::CopyFile(CFInstance_src_path, CFInstance_path_));
CFInstall_src_path = chrome_frame_source_path.AppendASCII("CFInstall.js");
CFInstall_path_ = test_file_path_.AppendASCII("CFInstall.js");
- ASSERT_TRUE(file_util::CopyFile(CFInstall_src_path, CFInstall_path_));
+ ASSERT_TRUE(base::CopyFile(CFInstall_src_path, CFInstall_path_));
loop_ = new chrome_frame_test::TimedMsgLoop();
loop_->set_snapshot_on_timeout(true);
« no previous file with comments | « chrome_frame/test/dll_redirector_loading_test.cc ('k') | cloud_print/common/win/install_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698