| Index: Source/core/animation/css/CSSPendingAnimations.h
|
| diff --git a/Source/core/animation/css/CSSPendingAnimations.h b/Source/core/animation/css/CSSPendingAnimations.h
|
| index 432e403d7cdf34b88dd33cdd956650364c868f43..0ace4c2fffbc4fd0f76e5cb83ceb57f938525c8a 100644
|
| --- a/Source/core/animation/css/CSSPendingAnimations.h
|
| +++ b/Source/core/animation/css/CSSPendingAnimations.h
|
| @@ -40,12 +40,13 @@ namespace WebCore {
|
| // animations when both classes of CSS Animations are triggered by the same recalc
|
| class CSSPendingAnimations FINAL {
|
| public:
|
| - void add(Player* player) { m_pending.append(player); };
|
| - void startPendingAnimations();
|
| + void add(Player*);
|
| + void startPendingAnimationsAfterStyleRecalc();
|
| + void startPendingAnimationsAfterCompositingUpdate();
|
| void notifyCompositorAnimationStarted(double monotonicAnimationStartTime);
|
|
|
| private:
|
| - Vector<RefPtr<Player> > m_pending;
|
| + Vector<std::pair<RefPtr<Player>, double> > m_pending;
|
| Vector<RefPtr<Player> > m_waitingForCompositorAnimationStart;
|
| };
|
|
|
|
|