| Index: Source/core/page/animation/ImplicitAnimation.h
|
| diff --git a/Source/core/page/animation/ImplicitAnimation.h b/Source/core/page/animation/ImplicitAnimation.h
|
| index 0e54587ef891f4ed327d04f7a608b9cde1c4f7c1..4954f1691c0b69728ef02ba46ce13a4cc7600200 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 CSSAnimationData* animation, CSSPropertyID animatingProperty, RenderObject* renderer, CompositeAnimation* compositeAnimation, RenderStyle* fromStyle)
|
| + static PassRefPtr<ImplicitAnimation> create(const StyleAnimationData* 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 CSSAnimationData*, CSSPropertyID, RenderObject*, CompositeAnimation*, RenderStyle*);
|
| + ImplicitAnimation(const StyleAnimationData*, CSSPropertyID, RenderObject*, CompositeAnimation*, RenderStyle*);
|
| virtual ~ImplicitAnimation();
|
|
|
| CSSPropertyID m_transitionProperty; // Transition property as specified in the RenderStyle.
|
|
|