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

Unified Diff: net/disk_cache/blockfile/mapped_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/blockfile/mapped_file_win.cc
diff --git a/net/disk_cache/blockfile/mapped_file_win.cc b/net/disk_cache/blockfile/mapped_file_win.cc
index d725238e32eba567ba530dd9c8eec96a4c2f2d24..c2d48b7fd794929e3be426ec2cc29a961182a4ae 100644
--- a/net/disk_cache/blockfile/mapped_file_win.cc
+++ b/net/disk_cache/blockfile/mapped_file_win.cc
@@ -18,8 +18,8 @@ void* MappedFile::Init(const base::FilePath& name, size_t size) {
buffer_ = NULL;
init_ = true;
- section_ = CreateFileMapping(platform_file(), NULL, PAGE_READWRITE, 0,
- static_cast<DWORD>(size), NULL);
+ section_ = CreateFileMapping(
+ platform_file(), NULL, PAGE_READWRITE, 0, static_cast<DWORD>(size), NULL);
if (!section_)
return NULL;

Powered by Google App Engine
This is Rietveld 408576698