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

Unified Diff: third_party/WebKit/Source/core/dom/custom/V0CustomElementMicrotaskQueueBase.cpp

Issue 2727843003: Replace RELEASE_ASSERT with CHECK in core/{dom,editing,html} (Closed)
Patch Set: Add a comment 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/core/dom/custom/V0CustomElementMicrotaskQueueBase.cpp
diff --git a/third_party/WebKit/Source/core/dom/custom/V0CustomElementMicrotaskQueueBase.cpp b/third_party/WebKit/Source/core/dom/custom/V0CustomElementMicrotaskQueueBase.cpp
index e6f7d0dae7e28f698e37bf2963ce27228b039108..f898e61bdd4eec977930e48b697222e4590c2c39 100644
--- a/third_party/WebKit/Source/core/dom/custom/V0CustomElementMicrotaskQueueBase.cpp
+++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElementMicrotaskQueueBase.cpp
@@ -9,7 +9,7 @@
namespace blink {
void V0CustomElementMicrotaskQueueBase::dispatch() {
- RELEASE_ASSERT(!m_inDispatch);
+ CHECK(!m_inDispatch);
m_inDispatch = true;
doDispatch();
m_inDispatch = false;

Powered by Google App Engine
This is Rietveld 408576698