| Index: third_party/WebKit/Source/core/svg/SVGAngle.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGAngle.cpp b/third_party/WebKit/Source/core/svg/SVGAngle.cpp
|
| index 3924f93e9427d586eade8ea938f4215207414017..5ed02636ae151aa118f6ec5f6d30e3c4378b431e 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGAngle.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGAngle.cpp
|
| @@ -58,7 +58,7 @@ DEFINE_TRACE(SVGMarkerOrientEnumeration) {
|
| }
|
|
|
| void SVGMarkerOrientEnumeration::notifyChange() {
|
| - ASSERT(m_angle);
|
| + DCHECK(m_angle);
|
| m_angle->orientTypeChanged();
|
| }
|
|
|
| @@ -391,7 +391,7 @@ void SVGAngle::calculateAnimatedValue(SVGAnimationElement* animationElement,
|
| SVGPropertyBase* to,
|
| SVGPropertyBase* toAtEndOfDuration,
|
| SVGElement*) {
|
| - ASSERT(animationElement);
|
| + DCHECK(animationElement);
|
| bool isToAnimation = animationElement->getAnimationMode() == ToAnimation;
|
|
|
| SVGAngle* fromAngle = isToAnimation ? this : toSVGAngle(from);
|
|
|