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

Unified Diff: third_party/WebKit/Source/platform/Timer.h

Issue 2513893002: Make ifdefs consistent in WebKit/Source/core/ (Closed)
Patch Set: Fix build. Update after review. Created 4 years, 1 month 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.h
diff --git a/third_party/WebKit/Source/platform/Timer.h b/third_party/WebKit/Source/platform/Timer.h
index 2011a145dd915fa79a8812fcf67ed83a4d346f96..a8b25af59ebb78ed1854c7a4c7c82bfa9c55ee5b 100644
--- a/third_party/WebKit/Source/platform/Timer.h
+++ b/third_party/WebKit/Source/platform/Timer.h
@@ -196,7 +196,7 @@ class UnthrottledThreadTimer : public TaskRunnerTimer<TimerFiredClass> {
NO_SANITIZE_ADDRESS
inline bool TimerBase::isActive() const {
- ASSERT(m_thread == currentThread());
+ DCHECK(m_thread == currentThread());
return m_weakPtrFactory.hasWeakPtrs();
}

Powered by Google App Engine
This is Rietveld 408576698