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

Unified Diff: third_party/WebKit/Source/core/workers/WorkerEventQueue.cpp

Issue 1902683005: Worker: Replace ASSERT macros with DCHECK macros (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/core/workers/WorkerEventQueue.cpp
diff --git a/third_party/WebKit/Source/core/workers/WorkerEventQueue.cpp b/third_party/WebKit/Source/core/workers/WorkerEventQueue.cpp
index dd9f064c6eeae689ab0b1913082dcfc8079633ee..c4647cf013e90f5914bea43ca182dd2a6765bb38 100644
--- a/third_party/WebKit/Source/core/workers/WorkerEventQueue.cpp
+++ b/third_party/WebKit/Source/core/workers/WorkerEventQueue.cpp
@@ -46,7 +46,7 @@ WorkerEventQueue::WorkerEventQueue(ExecutionContext* context)
WorkerEventQueue::~WorkerEventQueue()
{
- ASSERT(m_eventTaskMap.isEmpty());
+ DCHECK(m_eventTaskMap.isEmpty());
}
DEFINE_TRACE(WorkerEventQueue)

Powered by Google App Engine
This is Rietveld 408576698