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

Unified Diff: chrome/browser/search_engines/template_url_parser_unittest.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/search_engines/template_url_parser_unittest.cc
diff --git a/chrome/browser/search_engines/template_url_parser_unittest.cc b/chrome/browser/search_engines/template_url_parser_unittest.cc
index 3905a3a71813b5a0bdc80a073bb47938ce16844d..b6020166340424a97ff06b0c227d6a7705068e13 100644
--- a/chrome/browser/search_engines/template_url_parser_unittest.cc
+++ b/chrome/browser/search_engines/template_url_parser_unittest.cc
@@ -98,7 +98,7 @@ void TemplateURLParserTest::ParseFile(
ASSERT_TRUE(base::PathExists(full_path));
std::string contents;
- ASSERT_TRUE(file_util::ReadFileToString(full_path, &contents));
+ ASSERT_TRUE(base::ReadFileToString(full_path, &contents));
template_url_.reset(TemplateURLParser::Parse(NULL, false, contents.data(),
contents.length(), filter));
}

Powered by Google App Engine
This is Rietveld 408576698