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

Unified Diff: chrome/test/perf/tab_switching_test.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/test/perf/startup_test.cc ('k') | chrome/test/reliability/automated_ui_tests.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/perf/tab_switching_test.cc
diff --git a/chrome/test/perf/tab_switching_test.cc b/chrome/test/perf/tab_switching_test.cc
index 8ddfb210b50636bc0d43662b8398511932da1691..55a4d085bfc12b0c34fa41193935e7b69978f606 100644
--- a/chrome/test/perf/tab_switching_test.cc
+++ b/chrome/test/perf/tab_switching_test.cc
@@ -113,8 +113,7 @@ class TabSwitchingUITest : public UIPerfTest {
std::string contents;
int max_tries = 20;
do {
- log_has_been_dumped = file_util::ReadFileToString(log_file_name_,
- &contents);
+ log_has_been_dumped = base::ReadFileToString(log_file_name_, &contents);
if (!log_has_been_dumped)
base::PlatformThread::Sleep(base::TimeDelta::FromMilliseconds(100));
} while (!log_has_been_dumped && max_tries--);
« no previous file with comments | « chrome/test/perf/startup_test.cc ('k') | chrome/test/reliability/automated_ui_tests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698