Chromium Code Reviews| Index: base/test/test_file_util.cc |
| diff --git a/base/test/test_file_util.cc b/base/test/test_file_util.cc |
| index 8dafc58a7dfd43207812266c680515115e56a38f..40b25f01aa8bea2a6c52be5e5ee17609431eeecb 100644 |
| --- a/base/test/test_file_util.cc |
| +++ b/base/test/test_file_util.cc |
| @@ -20,4 +20,9 @@ bool EvictFileFromSystemCacheWithRetry(const FilePath& path) { |
| return false; |
| } |
| +// Declared in base/files/file_path.h. |
| +void PrintTo(const FilePath& path, std::ostream* out) { |
| + *out << path.value(); |
| +} |
| + |
| } // namespace base |