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

Unified Diff: third_party/WebKit/Source/core/html/HTMLTagCollection.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/HTMLTagCollection.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLTagCollection.cpp b/third_party/WebKit/Source/core/html/HTMLTagCollection.cpp
index ba08802fd2aa3c633f58e2ea62797aff1381a5fa..557463dc6f3f0895152f48daaa0513ca4f5dd7cc 100644
--- a/third_party/WebKit/Source/core/html/HTMLTagCollection.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLTagCollection.cpp
@@ -30,7 +30,7 @@ HTMLTagCollection::HTMLTagCollection(ContainerNode& rootNode, const AtomicString
: TagCollection(rootNode, HTMLTagCollectionType, starAtom, localName)
, m_loweredLocalName(localName.lower())
{
- ASSERT(rootNode.document().isHTMLDocument());
+ DCHECK(rootNode.document().isHTMLDocument());
}
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLTagCollection.h ('k') | third_party/WebKit/Source/core/html/HTMLTextAreaElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698