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

Unified Diff: net/disk_cache/simple/simple_index_file_posix.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_posix.cc
diff --git a/net/disk_cache/simple/simple_index_file_posix.cc b/net/disk_cache/simple/simple_index_file_posix.cc
index 586699d2a8ebb8935a031f87d156fabdbf1d7f9d..df187555192c9c4c33f5b6f142acaa34039e50d6 100644
--- a/net/disk_cache/simple/simple_index_file_posix.cc
+++ b/net/disk_cache/simple/simple_index_file_posix.cc
@@ -41,8 +41,8 @@ bool SimpleIndexFile::TraverseCacheDirectory(
const std::string file_name(result->d_name);
if (file_name == "." || file_name == "..")
continue;
- const base::FilePath file_path = cache_path.Append(
- base::FilePath(file_name));
+ const base::FilePath file_path =
+ cache_path.Append(base::FilePath(file_name));
entry_file_callback.Run(file_path);
}
PLOG(ERROR) << "readdir_r " << cache_path.value();

Powered by Google App Engine
This is Rietveld 408576698