Home | History | Annotate | Download | only in animation

Lines Matching refs:AnimationControllerPrivate

33 #include "AnimationControllerPrivate.h"
51 AnimationControllerPrivate::AnimationControllerPrivate(Frame* frame)
52 : m_animationTimer(this, &AnimationControllerPrivate::animationTimerFired)
53 , m_updateStyleIfNeededDispatcher(this, &AnimationControllerPrivate::updateStyleIfNeededDispatcherFired)
62 AnimationControllerPrivate::~AnimationControllerPrivate()
66 PassRefPtr<CompositeAnimation> AnimationControllerPrivate::accessCompositeAnimation(RenderObject* renderer)
76 bool AnimationControllerPrivate::clear(RenderObject* renderer)
87 void AnimationControllerPrivate::updateAnimationTimer(bool callSetChanged/* = false*/)
135 void AnimationControllerPrivate::updateStyleIfNeededDispatcherFired(Timer<AnimationControllerPrivate>*)
140 void AnimationControllerPrivate::fireEventsAndUpdateStyle()
169 void AnimationControllerPrivate::startUpdateStyleIfNeededDispatcher()
175 void AnimationControllerPrivate::addEventToDispatch(PassRefPtr<Element> element, const AtomicString& eventType, const String& name, double elapsedTime)
187 void AnimationControllerPrivate::addNodeChangeToDispatch(PassRefPtr<Node> node)
197 void AnimationControllerPrivate::animationTimerFired(Timer<AnimationControllerPrivate>*)
212 bool AnimationControllerPrivate::isRunningAnimationOnRenderer(RenderObject* renderer, CSSPropertyID property, bool isRunningNow) const
221 bool AnimationControllerPrivate::isRunningAcceleratedAnimationOnRenderer(RenderObject* renderer, CSSPropertyID property, bool isRunningNow) const
230 void AnimationControllerPrivate::suspendAnimations()
239 void AnimationControllerPrivate::resumeAnimations()
248 void AnimationControllerPrivate::suspendAnimationsForDocument(Document* document)
264 void AnimationControllerPrivate::resumeAnimationsForDocument(Document* document)
280 bool AnimationControllerPrivate::pauseAnimationAtTime(RenderObject* renderer, const String& name, double t)
298 bool AnimationControllerPrivate::pauseTransitionAtTime(RenderObject* renderer, const String& property, double t)
316 double AnimationControllerPrivate::beginAnimationUpdateTime()
323 void AnimationControllerPrivate::endAnimationUpdate()
330 void AnimationControllerPrivate::receivedStartTimeResponse(double time)
336 PassRefPtr<RenderStyle> AnimationControllerPrivate::getAnimatedStyleForRenderer(RenderObject* renderer)
355 unsigned AnimationControllerPrivate::numberOfActiveAnimations() const
368 void AnimationControllerPrivate::addToAnimationsWaitingForStyle(AnimationBase* animation)
376 void AnimationControllerPrivate::removeFromAnimationsWaitingForStyle(AnimationBase* animationToRemove)
381 void AnimationControllerPrivate::styleAvailable()
392 void AnimationControllerPrivate::addToAnimationsWaitingForStartTimeResponse(AnimationBase* animation, bool willGetResponse)
418 void AnimationControllerPrivate::removeFromAnimationsWaitingForStartTimeResponse(AnimationBase* animationToRemove)
426 void AnimationControllerPrivate::startTimeResponse(double time)
439 void AnimationControllerPrivate::animationWillBeRemoved(AnimationBase* animation)
445 PassRefPtr<WebKitAnimationList> AnimationControllerPrivate::animationsForRenderer(RenderObject* renderer) const
456 : m_data(new AnimationControllerPrivate(frame))