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

Unified Diff: third_party/WebKit/Source/core/svg/SVGTextContentElement.cpp

Issue 2738863002: Replace ASSERT with DCHECK in core/svg/ (Closed)
Patch Set: Split DCHECKS wherever possible Created 3 years, 9 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/svg/SVGTextContentElement.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGTextContentElement.cpp b/third_party/WebKit/Source/core/svg/SVGTextContentElement.cpp
index aca2e19f769bf77b34e33ec2ca1ad17c165a2784..a34a32e6bbee3029ebeb5235e66ec4411363284a 100644
--- a/third_party/WebKit/Source/core/svg/SVGTextContentElement.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGTextContentElement.cpp
@@ -212,7 +212,7 @@ void SVGTextContentElement::selectSubString(unsigned charnum,
if (nchars > numberOfChars - charnum)
nchars = numberOfChars - charnum;
- ASSERT(document().frame());
+ DCHECK(document().frame());
// Find selection start
VisiblePosition start = VisiblePosition::firstPositionInNode(
@@ -296,7 +296,7 @@ SVGTextContentElement* SVGTextContentElement::elementFromLineLayoutItem(
return nullptr;
SVGElement* element = toSVGElement(lineLayoutItem.node());
- ASSERT(element);
+ DCHECK(element);
return isSVGTextContentElement(*element) ? toSVGTextContentElement(element)
: 0;
}
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGTests.cpp ('k') | third_party/WebKit/Source/core/svg/SVGTransform.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698