| Index: Source/core/page/animation/ImplicitAnimation.h
|
| diff --git a/Source/core/page/animation/ImplicitAnimation.h b/Source/core/page/animation/ImplicitAnimation.h
|
| index a77af62d867e8cf5321b22316b9dc135a20adb7e..0e54587ef891f4ed327d04f7a608b9cde1c4f7c1 100644
|
| --- a/Source/core/page/animation/ImplicitAnimation.h
|
| +++ b/Source/core/page/animation/ImplicitAnimation.h
|
| @@ -39,7 +39,7 @@ namespace WebCore {
|
| // for a single RenderObject.
|
| class ImplicitAnimation : public AnimationBase {
|
| public:
|
| - static PassRefPtr<ImplicitAnimation> create(const Animation* animation, CSSPropertyID animatingProperty, RenderObject* renderer, CompositeAnimation* compositeAnimation, RenderStyle* fromStyle)
|
| + static PassRefPtr<ImplicitAnimation> create(const CSSAnimationData* animation, CSSPropertyID animatingProperty, RenderObject* renderer, CompositeAnimation* compositeAnimation, RenderStyle* fromStyle)
|
| {
|
| return adoptRef(new ImplicitAnimation(animation, animatingProperty, renderer, compositeAnimation, fromStyle));
|
| };
|
| @@ -80,7 +80,7 @@ protected:
|
| void checkForMatchingFilterFunctionLists();
|
|
|
| private:
|
| - ImplicitAnimation(const Animation*, CSSPropertyID, RenderObject*, CompositeAnimation*, RenderStyle*);
|
| + ImplicitAnimation(const CSSAnimationData*, CSSPropertyID, RenderObject*, CompositeAnimation*, RenderStyle*);
|
| virtual ~ImplicitAnimation();
|
|
|
| CSSPropertyID m_transitionProperty; // Transition property as specified in the RenderStyle.
|
|
|