| Index: third_party/WebKit/Source/core/animation/animatable/AnimatableNeutral.h
|
| diff --git a/third_party/WebKit/Source/core/animation/animatable/AnimatableNeutral.h b/third_party/WebKit/Source/core/animation/animatable/AnimatableNeutral.h
|
| index 5bb858f4f5b2415af36ab0a6099ec87fee8ca619..11653fec484f2a2aedb4f7f8bee50f78aaba5379 100644
|
| --- a/third_party/WebKit/Source/core/animation/animatable/AnimatableNeutral.h
|
| +++ b/third_party/WebKit/Source/core/animation/animatable/AnimatableNeutral.h
|
| @@ -43,7 +43,7 @@ protected:
|
| static PassRefPtr<AnimatableNeutral> create() { return adoptRef(new AnimatableNeutral()); }
|
| PassRefPtr<AnimatableValue> interpolateTo(const AnimatableValue* value, double fraction) const override
|
| {
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return nullptr;
|
| }
|
|
|
| @@ -52,7 +52,7 @@ private:
|
| AnimatableType type() const override { return TypeNeutral; }
|
| bool equalTo(const AnimatableValue* value) const override
|
| {
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return true;
|
| }
|
| };
|
|
|