Index: mojo/edk/test/test_support_impl.cc |
diff --git a/mojo/edk/test/test_support_impl.cc b/mojo/edk/test/test_support_impl.cc |
index fae3a8f32d712ace157000cc0370659a22d4e7d4..2a863316a982b6986fceb0ed95ede4cf58ef5166 100644 |
--- a/mojo/edk/test/test_support_impl.cc |
+++ b/mojo/edk/test/test_support_impl.cc |
@@ -56,7 +56,8 @@ |
char** TestSupportImpl::EnumerateSourceRootRelativeDirectory( |
const char* relative_path) { |
std::vector<std::string> names; |
- base::FileEnumerator e(ResolveSourceRootRelativePath(relative_path), false, |
+ base::FileEnumerator e(ResolveSourceRootRelativePath(relative_path), |
+ false, |
base::FileEnumerator::FILES); |
for (base::FilePath name = e.Next(); !name.empty(); name = e.Next()) |
names.push_back(name.BaseName().AsUTF8Unsafe()); |