| Index: net/disk_cache/simple/simple_index_file_win.cc
|
| diff --git a/net/disk_cache/simple/simple_index_file_win.cc b/net/disk_cache/simple/simple_index_file_win.cc
|
| index 051d12deaf7208c173b0fcaac0849c8f646e402f..946fa9bb168b99bcd51cfd1ce4ab3ef08567873a 100644
|
| --- a/net/disk_cache/simple/simple_index_file_win.cc
|
| +++ b/net/disk_cache/simple/simple_index_file_win.cc
|
| @@ -18,9 +18,10 @@ bool SimpleIndexFile::TraverseCacheDirectory(
|
| const base::FilePath current_directory(FILE_PATH_LITERAL("."));
|
| const base::FilePath parent_directory(FILE_PATH_LITERAL(".."));
|
| const base::FilePath::StringType file_pattern = FILE_PATH_LITERAL("*");
|
| - base::FileEnumerator enumerator(
|
| - cache_path, false /* recursive */, base::FileEnumerator::FILES,
|
| - file_pattern);
|
| + base::FileEnumerator enumerator(cache_path,
|
| + false /* recursive */,
|
| + base::FileEnumerator::FILES,
|
| + file_pattern);
|
| for (base::FilePath file_path = enumerator.Next(); !file_path.empty();
|
| file_path = enumerator.Next()) {
|
| if (file_path == current_directory || file_path == parent_directory)
|
|
|