| Index: third_party/WebKit/Source/core/svg/SVGStringList.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGStringList.cpp b/third_party/WebKit/Source/core/svg/SVGStringList.cpp
|
| index be9c878d8bdb5866890c98f610736c27711fe4fe..2549e65eabc77b367a44f0445b0f7a20b5f0c72a 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGStringList.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGStringList.cpp
|
| @@ -147,7 +147,7 @@ bool SVGStringList::checkIndexBound(size_t index,
|
|
|
| void SVGStringList::add(SVGPropertyBase* other, SVGElement* contextElement) {
|
| // SVGStringList is never animated.
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| }
|
|
|
| void SVGStringList::calculateAnimatedValue(SVGAnimationElement*,
|
| @@ -158,12 +158,12 @@ void SVGStringList::calculateAnimatedValue(SVGAnimationElement*,
|
| SVGPropertyBase*,
|
| SVGElement*) {
|
| // SVGStringList is never animated.
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| }
|
|
|
| float SVGStringList::calculateDistance(SVGPropertyBase*, SVGElement*) {
|
| // SVGStringList is never animated.
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
|
|
| return -1.0f;
|
| }
|
|
|