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

Unified Diff: net/disk_cache/blockfile/mapped_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/blockfile/mapped_file_posix.cc
diff --git a/net/disk_cache/blockfile/mapped_file_posix.cc b/net/disk_cache/blockfile/mapped_file_posix.cc
index 966fc72686e7b6e2f33bcc4ac4e824027f81806e..2214583f8fcab42f90f04efb8e2d31ba3c467701 100644
--- a/net/disk_cache/blockfile/mapped_file_posix.cc
+++ b/net/disk_cache/blockfile/mapped_file_posix.cc
@@ -22,8 +22,8 @@ void* MappedFile::Init(const base::FilePath& name, size_t size) {
if (!size)
size = GetLength();
- buffer_ = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED,
- platform_file(), 0);
+ buffer_ =
+ mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, platform_file(), 0);
init_ = true;
view_size_ = size;
DCHECK(reinterpret_cast<intptr_t>(buffer_) != -1);

Powered by Google App Engine
This is Rietveld 408576698