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

Unified Diff: third_party/WebKit/Source/platform/heap/Heap.h

Issue 2701993002: DO NOT COMMIT: Results of running new (proposed) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 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: third_party/WebKit/Source/platform/heap/Heap.h
diff --git a/third_party/WebKit/Source/platform/heap/Heap.h b/third_party/WebKit/Source/platform/heap/Heap.h
index 98fdb22639ca358e8e194eab588a2211c63a054d..aef3a38c3864ee668a77cbda6e6bcaa6b0f951a2 100644
--- a/third_party/WebKit/Source/platform/heap/Heap.h
+++ b/third_party/WebKit/Source/platform/heap/Heap.h
@@ -621,8 +621,9 @@ Address ThreadHeap::allocate(size_t size, bool eagerlySweep) {
ThreadState* state = ThreadStateFor<ThreadingTrait<T>::Affinity>::state();
const char* typeName = WTF_HEAP_PROFILER_TYPE_NAME(T);
return ThreadHeap::allocateOnArenaIndex(
- state, size, eagerlySweep ? BlinkGC::EagerSweepArenaIndex
- : ThreadHeap::arenaIndexForObjectSize(size),
+ state, size,
+ eagerlySweep ? BlinkGC::EagerSweepArenaIndex
+ : ThreadHeap::arenaIndexForObjectSize(size),
GCInfoTrait<T>::index(), typeName);
}

Powered by Google App Engine
This is Rietveld 408576698