| Index: third_party/WebKit/Source/core/svg/SVGStaticStringList.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGStaticStringList.cpp b/third_party/WebKit/Source/core/svg/SVGStaticStringList.cpp
|
| index 97c94c90f20a0e80c29eeeb21d10cbf07d13d75a..8cbf62e2255eb5b13fcea2a372499ed1ebd50af3 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGStaticStringList.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGStaticStringList.cpp
|
| @@ -55,7 +55,7 @@ SVGPropertyBase* SVGStaticStringList::currentValueBase() {
|
| }
|
|
|
| const SVGPropertyBase& SVGStaticStringList::baseValueBase() const {
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return *m_value;
|
| }
|
|
|
| @@ -64,16 +64,16 @@ bool SVGStaticStringList::isAnimating() const {
|
| }
|
|
|
| SVGPropertyBase* SVGStaticStringList::createAnimatedValue() {
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return nullptr;
|
| }
|
|
|
| void SVGStaticStringList::setAnimatedValue(SVGPropertyBase*) {
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| }
|
|
|
| void SVGStaticStringList::animationEnded() {
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| }
|
|
|
| bool SVGStaticStringList::needsSynchronizeAttribute() {
|
|
|