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

Unified Diff: chrome/browser/media_galleries/fileapi/itunes_finder_win.cc

Issue 19579005: Move ReadFileToString to the base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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/media_galleries/fileapi/itunes_finder_win.cc
diff --git a/chrome/browser/media_galleries/fileapi/itunes_finder_win.cc b/chrome/browser/media_galleries/fileapi/itunes_finder_win.cc
index ea02812aa5eda1f3f39f149b18abe37e6d4e2361..8a4d0aa133661c6d52a90f3135e9d2733823d8c9 100644
--- a/chrome/browser/media_galleries/fileapi/itunes_finder_win.cc
+++ b/chrome/browser/media_galleries/fileapi/itunes_finder_win.cc
@@ -29,7 +29,7 @@ std::string GetPrefFileData() {
base::FilePath pref_file = appdata_dir.AppendASCII("Apple Computer")
.AppendASCII("iTunes")
.AppendASCII("iTunesPrefs.xml");
- file_util::ReadFileToString(pref_file, &xml_pref_data);
+ base::ReadFileToString(pref_file, &xml_pref_data);
}
return xml_pref_data;
}

Powered by Google App Engine
This is Rietveld 408576698