| Index: third_party/WebKit/Source/core/svg/SVGPath.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGPath.cpp b/third_party/WebKit/Source/core/svg/SVGPath.cpp
|
| index 187fc290bbd9ae6834da15cec5185c027adf09f3..0c8288c2f2f17208831250fabe76e29e9042d6f5 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGPath.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGPath.cpp
|
| @@ -77,7 +77,7 @@ std::unique_ptr<SVGPathByteStream> conditionallyAddPathByteStreams(
|
| SVGPath::SVGPath() : m_pathValue(CSSPathValue::emptyPathValue()) {}
|
|
|
| SVGPath::SVGPath(CSSPathValue* pathValue) : m_pathValue(pathValue) {
|
| - ASSERT(m_pathValue);
|
| + DCHECK(m_pathValue);
|
| }
|
|
|
| SVGPath::~SVGPath() {}
|
| @@ -120,7 +120,7 @@ void SVGPath::calculateAnimatedValue(SVGAnimationElement* animationElement,
|
| SVGPropertyBase* toValue,
|
| SVGPropertyBase* toAtEndOfDurationValue,
|
| SVGElement*) {
|
| - ASSERT(animationElement);
|
| + DCHECK(animationElement);
|
| bool isToAnimation = animationElement->getAnimationMode() == ToAnimation;
|
|
|
| const SVGPath& to = toSVGPath(*toValue);
|
|
|