| Index: third_party/WebKit/Source/core/animation/InertEffect.h
|
| diff --git a/third_party/WebKit/Source/core/animation/InertEffect.h b/third_party/WebKit/Source/core/animation/InertEffect.h
|
| index eaf923ef69aecac98b0f4c2bf6c86658498cd701..adec2b2281cb9e410350b77d390ea81d78aa85d4 100644
|
| --- a/third_party/WebKit/Source/core/animation/InertEffect.h
|
| +++ b/third_party/WebKit/Source/core/animation/InertEffect.h
|
| @@ -32,7 +32,7 @@
|
| #define InertEffect_h
|
|
|
| #include "core/CoreExport.h"
|
| -#include "core/animation/AnimationEffect.h"
|
| +#include "core/animation/AnimationEffectReadOnly.h"
|
| #include "core/animation/EffectModel.h"
|
| #include "wtf/RefPtr.h"
|
|
|
| @@ -40,7 +40,7 @@ namespace blink {
|
|
|
| // Lightweight subset of KeyframeEffect.
|
| // Used to transport data for deferred KeyframeEffect construction and one off Interpolation sampling.
|
| -class CORE_EXPORT InertEffect final : public AnimationEffect {
|
| +class CORE_EXPORT InertEffect final : public AnimationEffectReadOnly {
|
| public:
|
| static InertEffect* create(EffectModel*, const Timing&, bool paused, double inheritedTime);
|
| void sample(Vector<RefPtr<Interpolation>>&) const;
|
| @@ -62,7 +62,7 @@ private:
|
| double m_inheritedTime;
|
| };
|
|
|
| -DEFINE_TYPE_CASTS(InertEffect, AnimationEffect, animationEffect, animationEffect->isInertEffect(), animationEffect.isInertEffect());
|
| +DEFINE_TYPE_CASTS(InertEffect, AnimationEffectReadOnly, animationEffect, animationEffect->isInertEffect(), animationEffect.isInertEffect());
|
|
|
| } // namespace blink
|
|
|
|
|