| Index: third_party/WebKit/Source/core/animation/KeyframeEffect.h
|
| diff --git a/third_party/WebKit/Source/core/animation/KeyframeEffect.h b/third_party/WebKit/Source/core/animation/KeyframeEffect.h
|
| index debc5b659fddd4c2c21a598dc62b8cf1ae677654..5c5471ede36043c4774c0261a58d24fb14bd1a20 100644
|
| --- a/third_party/WebKit/Source/core/animation/KeyframeEffect.h
|
| +++ b/third_party/WebKit/Source/core/animation/KeyframeEffect.h
|
| @@ -32,7 +32,7 @@
|
| #define KeyframeEffect_h
|
|
|
| #include "core/CoreExport.h"
|
| -#include "core/animation/AnimationEffect.h"
|
| +#include "core/animation/AnimationEffectReadOnly.h"
|
| #include "core/animation/EffectInput.h"
|
| #include "core/animation/EffectModel.h"
|
| #include "core/animation/TimingInput.h"
|
| @@ -50,7 +50,7 @@ class SampledEffect;
|
|
|
| // Represents the effect of an Animation on an Element's properties.
|
| // http://w3c.github.io/web-animations/#keyframe-effect
|
| -class CORE_EXPORT KeyframeEffect final : public AnimationEffect {
|
| +class CORE_EXPORT KeyframeEffect final : public AnimationEffectReadOnly {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| enum Priority { DefaultPriority, TransitionPriority };
|
| @@ -117,7 +117,7 @@ private:
|
| friend class AnimationAnimationV8Test;
|
| };
|
|
|
| -DEFINE_TYPE_CASTS(KeyframeEffect, AnimationEffect, animationNode, animationNode->isKeyframeEffect(), animationNode.isKeyframeEffect());
|
| +DEFINE_TYPE_CASTS(KeyframeEffect, AnimationEffectReadOnly, animationNode, animationNode->isKeyframeEffect(), animationNode.isKeyframeEffect());
|
|
|
| } // namespace blink
|
|
|
|
|