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

Unified Diff: base/test/launcher/unit_test_launcher.cc

Issue 99923002: Move temp file 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_launcher.cc ('k') | base/win/event_trace_controller_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/test/launcher/unit_test_launcher.cc
diff --git a/base/test/launcher/unit_test_launcher.cc b/base/test/launcher/unit_test_launcher.cc
index 8a57d178f651fcce9eb3e894caba7d3fc4de1e25..d96ca6257c19d464ef1d05c4d24e93ef95350b30 100644
--- a/base/test/launcher/unit_test_launcher.cc
+++ b/base/test/launcher/unit_test_launcher.cc
@@ -157,8 +157,7 @@ class UnitTestLauncherDelegate : public TestLauncherDelegate {
// per run to ensure clean state and make it possible to launch multiple
// processes in parallel.
base::FilePath output_file;
- CHECK(file_util::CreateNewTempDirectory(FilePath::StringType(),
- &output_file));
+ CHECK(CreateNewTempDirectory(FilePath::StringType(), &output_file));
output_file = output_file.AppendASCII("test_results.xml");
std::vector<std::string> current_test_names;
@@ -192,8 +191,7 @@ class UnitTestLauncherDelegate : public TestLauncherDelegate {
// per run to ensure clean state and make it possible to launch multiple
// processes in parallel.
base::FilePath output_file;
- CHECK(file_util::CreateNewTempDirectory(FilePath::StringType(),
- &output_file));
+ CHECK(CreateNewTempDirectory(FilePath::StringType(), &output_file));
output_file = output_file.AppendASCII("test_results.xml");
CommandLine cmd_line(
« no previous file with comments | « base/test/launcher/test_launcher.cc ('k') | base/win/event_trace_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698