Changeset 431 for trunk/WebCore/page/AnimationController.h
- Timestamp:
- 08/06/08 13:29:36 (5 months ago)
- Files:
-
- trunk/WebCore/page/AnimationController.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/WebCore/page/AnimationController.h
r243 r431 30 30 #define AnimationController_h 31 31 32 #include "CSSPropertyNames.h" 33 32 34 namespace WebCore { 33 35 34 36 class AnimationControllerPrivate; 37 class Document; 35 38 class Frame; 36 39 class RenderObject; … … 43 46 ~AnimationController(); 44 47 45 void cancel ImplicitAnimations(RenderObject*);46 RenderStyle* update ImplicitAnimations(RenderObject*, RenderStyle* newStyle);48 void cancelAnimations(RenderObject*); 49 RenderStyle* updateAnimations(RenderObject*, RenderStyle* newStyle); 47 50 48 void suspendAnimations(); 49 void resumeAnimations(); 51 bool isAnimatingPropertyOnRenderer(RenderObject* obj, int property) const; 52 53 void suspendAnimations(Document* document); 54 void resumeAnimations(Document* document); 55 void updateAnimationTimer(); 56 57 void startUpdateRenderingDispatcher(); 58 59 void styleAvailable(); 50 60 51 61 private: 52 62 AnimationControllerPrivate* m_data; 63 53 64 }; 54 65
