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

Unified Diff: base/test/perf_log.cc

Issue 109043002: Move more file_util functions to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 | « base/test/launcher/test_results_tracker.cc ('k') | base/win/shortcut_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/test/perf_log.cc
diff --git a/base/test/perf_log.cc b/base/test/perf_log.cc
index aaeb26c4cd6446369996c5280e198af7c07bc36a..efc1d42ee656cee2a1239c8cbf7c29887bb5f0cd 100644
--- a/base/test/perf_log.cc
+++ b/base/test/perf_log.cc
@@ -18,7 +18,7 @@ bool InitPerfLog(const FilePath& log_file) {
return false;
}
- perf_log_file = file_util::OpenFile(log_file, "w");
+ perf_log_file = OpenFile(log_file, "w");
return perf_log_file != NULL;
}
@@ -28,7 +28,7 @@ void FinalizePerfLog() {
NOTREACHED();
return;
}
- file_util::CloseFile(perf_log_file);
+ base::CloseFile(perf_log_file);
}
void LogPerfResult(const char* test_name, double value, const char* units) {
« no previous file with comments | « base/test/launcher/test_results_tracker.cc ('k') | base/win/shortcut_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698