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

Unified Diff: chrome/browser/first_run/first_run.cc

Issue 18332014: Move Copy* into the base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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/first_run/first_run.cc
diff --git a/chrome/browser/first_run/first_run.cc b/chrome/browser/first_run/first_run.cc
index 960660ac3a948216e234c580525b7b945e89ce8a..7dab5a5efce76c7a794be5561e5cb111d0b37d40 100644
--- a/chrome/browser/first_run/first_run.cc
+++ b/chrome/browser/first_run/first_run.cc
@@ -335,7 +335,7 @@ bool CopyPrefFile(const base::FilePath& user_data_dir,
// The master prefs are regular prefs so we can just copy the file
// to the default place and they just work.
- return file_util::CopyFile(master_prefs_path, user_prefs);
+ return base::CopyFile(master_prefs_path, user_prefs);
}
void SetupMasterPrefsFromInstallPrefs(

Powered by Google App Engine
This is Rietveld 408576698