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

Unified Diff: third_party/WebKit/Source/core/html/HTMLQuoteElement.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/HTMLQuoteElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLQuoteElement.cpp b/third_party/WebKit/Source/core/html/HTMLQuoteElement.cpp
index 1e15ef9f1410d6e412ad817ca4b7acf4726ac749..6260cca8c0d619ffedd3c223883fbaf6ad8c3169 100644
--- a/third_party/WebKit/Source/core/html/HTMLQuoteElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLQuoteElement.cpp
@@ -32,7 +32,7 @@ using namespace HTMLNames;
inline HTMLQuoteElement::HTMLQuoteElement(const QualifiedName& tagName, Document& document)
: HTMLElement(tagName, document)
{
- ASSERT(hasTagName(qTag) || hasTagName(blockquoteTag));
+ DCHECK(hasTagName(qTag) || hasTagName(blockquoteTag));
}
DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(HTMLQuoteElement)
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLProgressElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLScriptElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698