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

Unified Diff: third_party/WebKit/Source/platform/Timer.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/Timer.cpp
diff --git a/third_party/WebKit/Source/platform/Timer.cpp b/third_party/WebKit/Source/platform/Timer.cpp
index 27676ac47b196f84678c9a35bb4bf3e5a881951d..f7a6ab56ed2399ee1abaf8ec7ed90af31948964c 100644
--- a/third_party/WebKit/Source/platform/Timer.cpp
+++ b/third_party/WebKit/Source/platform/Timer.cpp
@@ -43,12 +43,10 @@ namespace blink {
TimerBase::TimerBase(WebTaskRunner* webTaskRunner)
: m_nextFireTime(0),
m_repeatInterval(0),
- m_webTaskRunner(webTaskRunner->clone())
+ m_webTaskRunner(webTaskRunner->clone()),
#if DCHECK_IS_ON()
- ,
- m_thread(currentThread())
+ m_thread(currentThread()),
#endif
- ,
m_weakPtrFactory(this) {
ASSERT(m_webTaskRunner);
}

Powered by Google App Engine
This is Rietveld 408576698