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

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

Issue 1854423002: ASSERT -> {DCHECK|DCHECK_XX}, ENABLE(ASSERT) -> DCHECK_IS_ON() in dom (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mark svg/as-image/svg-nested.html crash on win 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/dom/custom/CustomElementCallbackQueue.cpp
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementCallbackQueue.cpp b/third_party/WebKit/Source/core/dom/custom/CustomElementCallbackQueue.cpp
index f3c5506171f71b99d1ce9e86e82bbd86c1a9b3aa..14a145cc8ce47b7aee5e52778792a7e2cb8b53a6 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementCallbackQueue.cpp
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementCallbackQueue.cpp
@@ -49,7 +49,7 @@ CustomElementCallbackQueue::CustomElementCallbackQueue(RawPtr<Element> element)
bool CustomElementCallbackQueue::processInElementQueue(ElementQueueId caller)
{
- ASSERT(!m_inCreatedCallback);
+ DCHECK(!m_inCreatedCallback);
bool didWork = false;
// Never run custom element callbacks in UA shadow roots since that would

Powered by Google App Engine
This is Rietveld 408576698