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

Unified Diff: third_party/WebKit/Source/platform/heap/ThreadState.cpp

Issue 2387263004: Manually remove many instances of a comma quirk arising from the reformat. (Closed)
Patch Set: merge with master; thakis nit Created 4 years, 2 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/ThreadState.cpp
diff --git a/third_party/WebKit/Source/platform/heap/ThreadState.cpp b/third_party/WebKit/Source/platform/heap/ThreadState.cpp
index 0137124242c1af652e9a4038ac3662ceb9d5ece8..99eecc84fed0594f1f8eedec4e3b42d223f63b01 100644
--- a/third_party/WebKit/Source/platform/heap/ThreadState.cpp
+++ b/third_party/WebKit/Source/platform/heap/ThreadState.cpp
@@ -145,12 +145,10 @@ class ParkThreadsScope final {
ThreadState::ThreadState(BlinkGC::ThreadHeapMode threadHeapMode)
: m_thread(currentThread()),
- m_persistentRegion(wrapUnique(new PersistentRegion()))
+ m_persistentRegion(wrapUnique(new PersistentRegion())),
#if OS(WIN) && COMPILER(MSVC)
- ,
- m_threadStackSize(0)
+ m_threadStackSize(0),
#endif
- ,
m_startOfStack(
reinterpret_cast<intptr_t*>(StackFrameDepth::getStackStart())),
m_endOfStack(
@@ -172,16 +170,13 @@ ThreadState::ThreadState(BlinkGC::ThreadHeapMode threadHeapMode)
m_threadLocalWeakCallbackStack(CallbackStack::create()),
m_isolate(nullptr),
m_traceDOMWrappers(nullptr),
- m_invalidateDeadObjectsInWrappersMarkingDeque(nullptr)
+ m_invalidateDeadObjectsInWrappersMarkingDeque(nullptr),
#if defined(ADDRESS_SANITIZER)
- ,
- m_asanFakeStack(__asan_get_current_fake_stack())
+ m_asanFakeStack(__asan_get_current_fake_stack()),
#endif
#if defined(LEAK_SANITIZER)
- ,
- m_disabledStaticPersistentsRegistration(0)
+ m_disabledStaticPersistentsRegistration(0),
#endif
- ,
m_allocatedObjectSize(0),
m_markedObjectSize(0),
m_reportedMemoryToV8(0) {

Powered by Google App Engine
This is Rietveld 408576698