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

Unified Diff: third_party/WebKit/Source/core/html/HTMLProgressElement.cpp

Issue 2258033002: Replace ASSERT()s with DCHECK*() in core/html/*.{cpp,h}. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Replace ASSERT()s with DCHECK*() in core/html/*.{cpp,h}. Created 4 years, 4 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/html/HTMLProgressElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLProgressElement.cpp b/third_party/WebKit/Source/core/html/HTMLProgressElement.cpp
index 8ccbdb3411d378d4916c81d1f79c5be258d7ec6d..aa0ea463c659b99ee5068096baa45196bb4664c4 100644
--- a/third_party/WebKit/Source/core/html/HTMLProgressElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLProgressElement.cpp
@@ -145,7 +145,7 @@ void HTMLProgressElement::didElementStateChange()
void HTMLProgressElement::didAddUserAgentShadowRoot(ShadowRoot& root)
{
- ASSERT(!m_value);
+ DCHECK(!m_value);
ProgressShadowElement* inner = ProgressShadowElement::create(document());
inner->setShadowPseudoId(AtomicString("-webkit-progress-inner-element"));
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLQuoteElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698