| Index: third_party/WebKit/Source/core/animation/Keyframe.h
|
| diff --git a/third_party/WebKit/Source/core/animation/Keyframe.h b/third_party/WebKit/Source/core/animation/Keyframe.h
|
| index 8512253bb84068d5c3a2b7de2e2c4da7ebe29d73..4301cd4bcdb57afdeb2650f9aa50728fabbb0e75 100644
|
| --- a/third_party/WebKit/Source/core/animation/Keyframe.h
|
| +++ b/third_party/WebKit/Source/core/animation/Keyframe.h
|
| @@ -68,7 +68,7 @@ public:
|
| TimingFunction& easing() const { return *m_easing; }
|
| EffectModel::CompositeOperation composite() const { return m_composite; }
|
| double underlyingFraction() const { return m_composite == EffectModel::CompositeReplace ? 0 : 1; }
|
| - virtual bool isNeutral() const { ASSERT_NOT_REACHED(); return false; }
|
| + virtual bool isNeutral() const { NOTREACHED(); return false; }
|
| virtual PassRefPtr<PropertySpecificKeyframe> cloneWithOffset(double offset) const = 0;
|
|
|
| // FIXME: Remove this once CompositorAnimations no longer depends on AnimatableValues
|
|
|