| Index: base/test/test_launcher.cc
|
| diff --git a/base/test/test_launcher.cc b/base/test/test_launcher.cc
|
| index 78f5ed365a54207df6166b1901b396912a2e173d..aae48a540f423b5caa834fd8d4c6c588f27f1ff9 100644
|
| --- a/base/test/test_launcher.cc
|
| +++ b/base/test/test_launcher.cc
|
| @@ -162,7 +162,7 @@ ResultsPrinter::ResultsPrinter(const CommandLine& command_line)
|
| if (path.value().empty())
|
| path = FilePath(kDefaultOutputFile);
|
| FilePath dir_name = path.DirName();
|
| - if (!file_util::DirectoryExists(dir_name)) {
|
| + if (!DirectoryExists(dir_name)) {
|
| LOG(WARNING) << "The output directory does not exist. "
|
| << "Creating the directory: " << dir_name.value();
|
| // Create the directory if necessary (because the gtest does the same).
|
|
|