| Index: content/public/test/test_launcher.cc
|
| diff --git a/content/public/test/test_launcher.cc b/content/public/test/test_launcher.cc
|
| index 40545d54209ac6c33fdd7e9d8982adef3dc87d80..de843daefbae5aa38a5dfc9a485f879030760486 100644
|
| --- a/content/public/test/test_launcher.cc
|
| +++ b/content/public/test/test_launcher.cc
|
| @@ -175,7 +175,7 @@ ResultsPrinter::ResultsPrinter(const CommandLine& command_line) : out_(NULL) {
|
| // If the given path ends with '/', consider it is a directory.
|
| // Note: This does NOT check that a directory (or file) actually exists
|
| // (the behavior is same as what gtest does).
|
| - if (file_util::EndsWithSeparator(path)) {
|
| + if (path.EndsWithSeparator()) {
|
| base::FilePath executable = command_line.GetProgram().BaseName();
|
| path = path.Append(executable.ReplaceExtension(
|
| base::FilePath::StringType(FILE_PATH_LITERAL("xml"))));
|
|
|