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

Unified Diff: third_party/WebKit/Source/core/xml/XSLTExtensions.cpp

Issue 2274573004: Replace ASSERT*() with DCHECK*() in core/xml/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/xml/XSLTExtensions.cpp
diff --git a/third_party/WebKit/Source/core/xml/XSLTExtensions.cpp b/third_party/WebKit/Source/core/xml/XSLTExtensions.cpp
index 415611a4640257f6b208b64f31c7f95cef9fa659..fc069d211e5b533f4d1583504e9d6d59fb8acae5 100644
--- a/third_party/WebKit/Source/core/xml/XSLTExtensions.cpp
+++ b/third_party/WebKit/Source/core/xml/XSLTExtensions.cpp
@@ -70,7 +70,7 @@ static void exsltNodeSetFunction(xmlXPathParserContextPtr ctxt, int nargs)
void registerXSLTExtensions(xsltTransformContextPtr ctxt)
{
- ASSERT(RuntimeEnabledFeatures::xsltEnabled());
+ DCHECK(RuntimeEnabledFeatures::xsltEnabled());
xsltRegisterExtFunction(ctxt, (const xmlChar*)"node-set", (const xmlChar*)"http://exslt.org/common", exsltNodeSetFunction);
}
« no previous file with comments | « third_party/WebKit/Source/core/xml/XSLStyleSheetLibxslt.cpp ('k') | third_party/WebKit/Source/core/xml/XSLTProcessor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698