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

Unified Diff: chrome/test/reliability/automated_ui_tests.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/test/reliability/automated_ui_tests.cc
diff --git a/chrome/test/reliability/automated_ui_tests.cc b/chrome/test/reliability/automated_ui_tests.cc
index 2f43c29ef841525aae7cb580c4f9d98bb2539a2e..e59f4366a2fd32ce70ec287a27b82df3d56f1c74 100644
--- a/chrome/test/reliability/automated_ui_tests.cc
+++ b/chrome/test/reliability/automated_ui_tests.cc
@@ -627,7 +627,7 @@ bool AutomatedUITest::ForceCrash() {
bool AutomatedUITest::InitXMLReader() {
base::FilePath input_path = GetInputFilePath();
- if (!file_util::ReadFileToString(input_path, &xml_init_file_))
+ if (!base::ReadFileToString(input_path, &xml_init_file_))
return false;
return init_reader_.Load(xml_init_file_);
}
« no previous file with comments | « chrome/test/perf/tab_switching_test.cc ('k') | chrome/test/webdriver/webdriver_capabilities_parser_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698