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

Unified Diff: tools/android/device_stats_monitor/device_stats_monitor.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 | « third_party/zlib/google/zip_reader_unittest.cc ('k') | tools/gn/command_gyp.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/android/device_stats_monitor/device_stats_monitor.cc
diff --git a/tools/android/device_stats_monitor/device_stats_monitor.cc b/tools/android/device_stats_monitor/device_stats_monitor.cc
index 6388cdaf4365f153a383fb3a13e5120ceeedeffd..ef2fee9d9e09de2cb61ba1e9e067bd7b7685b86a 100644
--- a/tools/android/device_stats_monitor/device_stats_monitor.cc
+++ b/tools/android/device_stats_monitor/device_stats_monitor.cc
@@ -44,8 +44,8 @@ class DeviceStatsMonitor {
std::string out;
while (record_) {
out.clear();
- CHECK(file_util::ReadFileToString(io_stats_path, &out));
- CHECK(file_util::ReadFileToString(cpu_stats_path, &out));
+ CHECK(base::ReadFileToString(io_stats_path, &out));
+ CHECK(base::ReadFileToString(cpu_stats_path, &out));
samples_.push_back(out);
usleep(sample_interval);
}
« no previous file with comments | « third_party/zlib/google/zip_reader_unittest.cc ('k') | tools/gn/command_gyp.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698