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

Unified Diff: chrome/utility/importer/bookmark_html_reader.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
« no previous file with comments | « chrome/utility/extensions/unpacker.cc ('k') | chrome/utility/importer/firefox_importer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/utility/importer/bookmark_html_reader.cc
diff --git a/chrome/utility/importer/bookmark_html_reader.cc b/chrome/utility/importer/bookmark_html_reader.cc
index c70df8769a28255878e1f160fd194eed60c8753a..d8fa9acbf43c832e78f99d3722002a494b88f95b 100644
--- a/chrome/utility/importer/bookmark_html_reader.cc
+++ b/chrome/utility/importer/bookmark_html_reader.cc
@@ -93,7 +93,7 @@ void ImportBookmarksFile(
std::vector<ImportedBookmarkEntry>* bookmarks,
std::vector<ImportedFaviconUsage>* favicons) {
std::string content;
- file_util::ReadFileToString(file_path, &content);
+ base::ReadFileToString(file_path, &content);
std::vector<std::string> lines;
base::SplitString(content, '\n', &lines);
« no previous file with comments | « chrome/utility/extensions/unpacker.cc ('k') | chrome/utility/importer/firefox_importer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698