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

Unified Diff: tools/android/device_stats_monitor/device_stats_monitor.cc

Issue 12217101: Replace FilePath with base::FilePath in some more top level directories. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 | « sync/tools/testserver/run_sync_testserver.cc ('k') | tools/android/md5sum/md5sum.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 ebf17234b549f8a4a1d1c226525494197000adc5..c24a6d94b44b9c4da0d345b5d8cdebd15aedb381 100644
--- a/tools/android/device_stats_monitor/device_stats_monitor.cc
+++ b/tools/android/device_stats_monitor/device_stats_monitor.cc
@@ -39,8 +39,8 @@ class DeviceStatsMonitor {
// would affect the results.
void Start(int hz) {
const int sample_interval = 1000000 / hz;
- const FilePath io_stats_path(kIOStatsPath);
- const FilePath cpu_stats_path(kCPUStatsPath);
+ const base::FilePath io_stats_path(kIOStatsPath);
+ const base::FilePath cpu_stats_path(kCPUStatsPath);
std::string out;
while (record_) {
out.clear();
@@ -65,7 +65,7 @@ class DeviceStatsMonitor {
}
private:
- const FilePath out_path_;
+ const base::FilePath out_path_;
std::vector<std::string> samples_;
bool record_;
« no previous file with comments | « sync/tools/testserver/run_sync_testserver.cc ('k') | tools/android/md5sum/md5sum.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698