| Index: third_party/WebKit/Source/core/svg/SVGPoint.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGPoint.cpp b/third_party/WebKit/Source/core/svg/SVGPoint.cpp
|
| index 879b362eb600c3371906912d14c408c6381170d1..82314899142cfd4343bdcbb5d3ca88bbc412a34c 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGPoint.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGPoint.cpp
|
| @@ -95,7 +95,7 @@ String SVGPoint::valueAsString() const {
|
|
|
| void SVGPoint::add(SVGPropertyBase* other, SVGElement*) {
|
| // SVGPoint is not animated by itself
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| }
|
|
|
| void SVGPoint::calculateAnimatedValue(SVGAnimationElement* animationElement,
|
| @@ -106,13 +106,13 @@ void SVGPoint::calculateAnimatedValue(SVGAnimationElement* animationElement,
|
| SVGPropertyBase* toAtEndOfDurationValue,
|
| SVGElement*) {
|
| // SVGPoint is not animated by itself
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| }
|
|
|
| float SVGPoint::calculateDistance(SVGPropertyBase* to,
|
| SVGElement* contextElement) {
|
| // SVGPoint is not animated by itself
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return 0.0f;
|
| }
|
|
|
|
|