| Index: Source/core/animation/EffectModel.h
|
| diff --git a/Source/core/animation/AnimationEffect.h b/Source/core/animation/EffectModel.h
|
| similarity index 89%
|
| copy from Source/core/animation/AnimationEffect.h
|
| copy to Source/core/animation/EffectModel.h
|
| index ff659913b6b960d45c763fe41fec2a33425c42f7..2e131940ceaea078f08782e6745e055e3ffa0679 100644
|
| --- a/Source/core/animation/AnimationEffect.h
|
| +++ b/Source/core/animation/EffectModel.h
|
| @@ -28,8 +28,8 @@
|
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| */
|
|
|
| -#ifndef AnimationEffect_h
|
| -#define AnimationEffect_h
|
| +#ifndef EffectModel_h
|
| +#define EffectModel_h
|
|
|
| #include "bindings/core/v8/ScriptWrappable.h"
|
| #include "core/CSSPropertyNames.h"
|
| @@ -44,7 +44,7 @@ namespace blink {
|
|
|
| class Interpolation;
|
|
|
| -class CORE_EXPORT AnimationEffect : public RefCountedWillBeGarbageCollectedFinalized<AnimationEffect>, public ScriptWrappable {
|
| +class CORE_EXPORT EffectModel : public RefCountedWillBeGarbageCollectedFinalized<EffectModel>, public ScriptWrappable {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| enum CompositeOperation {
|
| @@ -52,8 +52,8 @@ public:
|
| CompositeAdd,
|
| };
|
|
|
| - AnimationEffect() { }
|
| - virtual ~AnimationEffect() { }
|
| + EffectModel() { }
|
| + virtual ~EffectModel() { }
|
| virtual void sample(int iteration, double fraction, double iterationDuration, OwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation>>>&) const = 0;
|
|
|
| virtual bool affects(PropertyHandle) const { return false; };
|
| @@ -64,4 +64,4 @@ public:
|
|
|
| } // namespace blink
|
|
|
| -#endif // AnimationEffect_h
|
| +#endif // EffectModel_h
|
|
|