Index: Source/core/page/animation/ImplicitAnimation.h |
diff --git a/Source/core/page/animation/ImplicitAnimation.h b/Source/core/page/animation/ImplicitAnimation.h |
index ce1dcec8a1428426ee49b52a7c44a8e71333901b..d3772a3c7dea836c92fb0241a5871a5eaff0cf33 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 PrimitiveAnimation* 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 PrimitiveAnimation*, CSSPropertyID, RenderObject*, CompositeAnimation*, RenderStyle*); |
virtual ~ImplicitAnimation(); |
CSSPropertyID m_transitionProperty; // Transition property as specified in the RenderStyle. |