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

Unified Diff: chrome/browser/performance_monitor/performance_monitor_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/performance_monitor/performance_monitor_browsertest.cc
diff --git a/chrome/browser/performance_monitor/performance_monitor_browsertest.cc b/chrome/browser/performance_monitor/performance_monitor_browsertest.cc
index 3d2c95cf3f6902c2a3c88a230f9143e5b8226629..c5aac772fd3eac11a66a278c14de802a0453fcb1 100644
--- a/chrome/browser/performance_monitor/performance_monitor_browsertest.cc
+++ b/chrome/browser/performance_monitor/performance_monitor_browsertest.cc
@@ -311,7 +311,7 @@ class PerformanceMonitorUncleanExitBrowserTest
base::FilePath first_profile_prefs_file =
first_profile.Append(chrome::kPreferencesFilename);
- CHECK(file_util::CopyFile(stock_prefs_file, first_profile_prefs_file));
+ CHECK(base::CopyFile(stock_prefs_file, first_profile_prefs_file));
CHECK(file_util::PathExists(first_profile_prefs_file));
second_profile_name_ =
@@ -324,7 +324,7 @@ class PerformanceMonitorUncleanExitBrowserTest
base::FilePath second_profile_prefs_file =
second_profile.Append(chrome::kPreferencesFilename);
- CHECK(file_util::CopyFile(stock_prefs_file, second_profile_prefs_file));
+ CHECK(base::CopyFile(stock_prefs_file, second_profile_prefs_file));
CHECK(file_util::PathExists(second_profile_prefs_file));
return true;
« no previous file with comments | « chrome/browser/page_cycler/page_cycler_browsertest.cc ('k') | chrome/browser/prefs/chrome_pref_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698