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

Unified Diff: net/disk_cache/cache_util_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/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()) {

Powered by Google App Engine
This is Rietveld 408576698