Searched defs:ImplicitAnimation (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/page/animation/
H A DImplicitAnimation.h37 // An ImplicitAnimation tracks the state of a transition of a specific CSS property
39 class ImplicitAnimation : public AnimationBase { class in namespace:WebCore
41 static PassRefPtr<ImplicitAnimation> create(const Animation* animation, int animatingProperty, RenderObject* renderer, CompositeAnimation* compositeAnimation, RenderStyle* fromStyle)
43 return adoptRef(new ImplicitAnimation(animation, animatingProperty, renderer, compositeAnimation, fromStyle));
81 ImplicitAnimation(const Animation*, int animatingProperty, RenderObject*, CompositeAnimation*, RenderStyle* fromStyle);
82 virtual ~ImplicitAnimation();
85 int m_animatingProperty; // Specific property for this ImplicitAnimation
H A DImplicitAnimation.cpp35 #include "ImplicitAnimation.h"
43 ImplicitAnimation::ImplicitAnimation(const Animation* transition, int animatingProperty, RenderObject* renderer, CompositeAnimation* compAnim, RenderStyle* fromStyle) function in class:WebCore::ImplicitAnimation
54 ImplicitAnimation::~ImplicitAnimation()
61 bool ImplicitAnimation::shouldSendEventForListener(Document::ListenerType inListenerType) const
66 void ImplicitAnimation::animate(CompositeAnimation*, RenderObject*, const RenderStyle*, RenderStyle* targetStyle, RefPtr<RenderStyle>& animatedStyle)
101 void ImplicitAnimation::getAnimatedStyle(RefPtr<RenderStyle>& animatedStyle)
109 bool ImplicitAnimation::startAnimation(double timeOffset)
123 void ImplicitAnimation
[all...]

Completed in 219 milliseconds