| Index: net/disk_cache/cache_util_posix.cc
|
| diff --git a/net/disk_cache/cache_util_posix.cc b/net/disk_cache/cache_util_posix.cc
|
| index 59e1c505d49a97c94f4f6a37dc9c48ed1eac8f3e..214c7cf9ff0480c77c387020f2ca53ed6af97836 100644
|
| --- a/net/disk_cache/cache_util_posix.cc
|
| +++ b/net/disk_cache/cache_util_posix.cc
|
| @@ -23,7 +23,9 @@ bool MoveCache(const base::FilePath& from_path, const base::FilePath& to_path) {
|
| LOG(ERROR) << "Unable to create destination cache directory.";
|
| return false;
|
| }
|
| - base::FileEnumerator iter(from_path, false /* not recursive */,
|
| + base::FileEnumerator iter(
|
| + from_path,
|
| + false /* not recursive */,
|
| base::FileEnumerator::DIRECTORIES | base::FileEnumerator::FILES);
|
| for (base::FilePath name = iter.Next(); !name.value().empty();
|
| name = iter.Next()) {
|
|
|