Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1637)

Unified Diff: net/disk_cache/simple/simple_index_file_win.cc

Issue 266243004: Clang format slam. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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)

Powered by Google App Engine
This is Rietveld 408576698