| Index: third_party/WebKit/Source/core/animation/InertEffect.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/InertEffect.cpp b/third_party/WebKit/Source/core/animation/InertEffect.cpp
|
| index af0a60a221106eeb77f46f6b6b6cd96aa6fb28e9..55864f777ef92f46586b6f4d52f2028f66e32680 100644
|
| --- a/third_party/WebKit/Source/core/animation/InertEffect.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/InertEffect.cpp
|
| @@ -40,7 +40,7 @@ InertEffect* InertEffect::create(EffectModel* effect, const Timing& timing, bool
|
| }
|
|
|
| InertEffect::InertEffect(EffectModel* model, const Timing& timing, bool paused, double inheritedTime)
|
| - : AnimationEffect(timing)
|
| + : AnimationEffectReadOnly(timing)
|
| , m_model(model)
|
| , m_paused(paused)
|
| , m_inheritedTime(inheritedTime)
|
| @@ -68,7 +68,7 @@ double InertEffect::calculateTimeToEffectChange(bool, double, double) const
|
| DEFINE_TRACE(InertEffect)
|
| {
|
| visitor->trace(m_model);
|
| - AnimationEffect::trace(visitor);
|
| + AnimationEffectReadOnly::trace(visitor);
|
| }
|
|
|
| } // namespace blink
|
|
|