| Index: base/test_file_util_posix.cc
|
| diff --git a/base/test_file_util_posix.cc b/base/test_file_util_posix.cc
|
| index ce36091cbebeb03fd43f81bd72c8ef09e0bedd47..66eb8a3874d982c34d9cc35570821cbb2571cbfb 100644
|
| --- a/base/test_file_util_posix.cc
|
| +++ b/base/test_file_util_posix.cc
|
| @@ -18,6 +18,12 @@
|
|
|
| namespace file_util {
|
|
|
| +bool DieFileDie(const FilePath& file, bool recurse) {
|
| + // There is no need to workaround Windows problems on POSIX.
|
| + // Just pass-through.
|
| + return file_util::Delete(file, recurse);
|
| +}
|
| +
|
| bool CopyRecursiveDirNoCache(const std::wstring& source_dir,
|
| const std::wstring& dest_dir) {
|
| const FilePath from_path(FilePath::FromWStringHack(source_dir));
|
|
|