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

Unified Diff: base/test/launcher/test_results_tracker.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/gtest_xml_util.cc ('k') | base/test/perf_log.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/test/launcher/test_results_tracker.cc
diff --git a/base/test/launcher/test_results_tracker.cc b/base/test/launcher/test_results_tracker.cc
index b2140daf9e201aa4cafddd5c8bbe31cbd635257e..7b8dbeb2e427db065928cda7e1b1157395fb76a0 100644
--- a/base/test/launcher/test_results_tracker.cc
+++ b/base/test/launcher/test_results_tracker.cc
@@ -135,7 +135,7 @@ bool TestResultsTracker::Init(const CommandLine& command_line) {
return false;
}
}
- out_ = file_util::OpenFile(path, "w");
+ out_ = OpenFile(path, "w");
if (!out_) {
LOG(ERROR) << "Cannot open output file: "
<< path.value() << ".";
« no previous file with comments | « base/test/gtest_xml_util.cc ('k') | base/test/perf_log.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698