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

Unified Diff: chrome/browser/printing/printing_layout_browsertest.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/browser/printing/printing_layout_browsertest.cc
diff --git a/chrome/browser/printing/printing_layout_browsertest.cc b/chrome/browser/printing/printing_layout_browsertest.cc
index 5ba5b838700cd513b382e4c528cd788436435d75..2ce4ffcfa03ac57d87432403a413d926994dd31c 100644
--- a/chrome/browser/printing/printing_layout_browsertest.cc
+++ b/chrome/browser/printing/printing_layout_browsertest.cc
@@ -132,7 +132,7 @@ class PrintingLayoutTest : public PrintingTest<InProcessBrowserTest>,
if (GenerateFiles()) {
// Copy the .emf and generate an .png.
- file_util::CopyFile(test_result, emf);
+ base::CopyFile(test_result, emf);
Image emf_content(emf);
emf_content.SaveToPng(png);
// Saving is always fine.
@@ -151,7 +151,7 @@ class PrintingLayoutTest : public PrintingTest<InProcessBrowserTest>,
// Backup the result emf file.
base::FilePath failed(
base_path.Append(verification_name + L"_failed.emf"));
- file_util::CopyFile(test_result, failed);
+ base::CopyFile(test_result, failed);
}
// This verification is only to know that the EMF rendering stays
« no previous file with comments | « chrome/browser/prefs/pref_service_browsertest.cc ('k') | chrome/browser/profiles/profile_shortcut_manager_unittest_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698