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

Unified Diff: trunk/src/base/test/perf_log.cc

Issue 105823009: Revert 239280 "Move more file_util functions to base namespace." (Closed) Base URL: svn://svn.chromium.org/chrome/
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 | « trunk/src/base/test/launcher/test_results_tracker.cc ('k') | trunk/src/base/win/shortcut_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/base/test/perf_log.cc
===================================================================
--- trunk/src/base/test/perf_log.cc (revision 239399)
+++ trunk/src/base/test/perf_log.cc (working copy)
@@ -18,7 +18,7 @@
return false;
}
- perf_log_file = OpenFile(log_file, "w");
+ perf_log_file = file_util::OpenFile(log_file, "w");
return perf_log_file != NULL;
}
@@ -28,7 +28,7 @@
NOTREACHED();
return;
}
- base::CloseFile(perf_log_file);
+ file_util::CloseFile(perf_log_file);
}
void LogPerfResult(const char* test_name, double value, const char* units) {
« no previous file with comments | « trunk/src/base/test/launcher/test_results_tracker.cc ('k') | trunk/src/base/win/shortcut_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698