| 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 6608814b744f73e93bb33c73e0d2e6fd1370bd9f..70b6937d6210dea43e7dff5c987014a564a15a14 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGAngle.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGAngle.cpp
|
| @@ -64,7 +64,7 @@ void SVGMarkerOrientEnumeration::notifyChange() {
|
|
|
| void SVGMarkerOrientEnumeration::add(SVGPropertyBase*, SVGElement*) {
|
| // SVGMarkerOrientEnumeration is only animated via SVGAngle
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| }
|
|
|
| void SVGMarkerOrientEnumeration::calculateAnimatedValue(
|
| @@ -76,14 +76,14 @@ void SVGMarkerOrientEnumeration::calculateAnimatedValue(
|
| SVGPropertyBase* toAtEndOfDurationValue,
|
| SVGElement* contextElement) {
|
| // SVGMarkerOrientEnumeration is only animated via SVGAngle
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| }
|
|
|
| float SVGMarkerOrientEnumeration::calculateDistance(
|
| SVGPropertyBase* to,
|
| SVGElement* contextElement) {
|
| // SVGMarkerOrientEnumeration is only animated via SVGAngle
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return -1.0;
|
| }
|
|
|
|
|