Index: Source/core/animation/CompositorPendingAnimations.h |
diff --git a/Source/core/animation/CompositorPendingAnimations.h b/Source/core/animation/CompositorPendingAnimations.h |
index e9163f42e2988c8a64ffa156667747487ab905cb..fc9aaa0130a1e09f438243adc1c1f34e716aa6e0 100644 |
--- a/Source/core/animation/CompositorPendingAnimations.h |
+++ b/Source/core/animation/CompositorPendingAnimations.h |
@@ -49,14 +49,14 @@ public: |
CompositorPendingAnimations() |
: m_timer(this, &CompositorPendingAnimations::timerFired) |
+ , m_compositorGroup(1) |
{ } |
void add(AnimationPlayer*); |
// Returns whether we are waiting for an animation to start and should |
// service again on the next frame. |
bool update(bool startOnCompositor = true); |
- void notifyAnimationStarted(double monotonicAnimationStartTime, bool startedOnCompositor); |
- void notifyCompositorAnimationStarted(double monotonicAnimationStartTime); |
+ void notifyCompositorAnimationStarted(double monotonicAnimationStartTime, int compositorGroup = 0); |
void trace(Visitor*); |
@@ -66,6 +66,7 @@ private: |
WillBeHeapVector<RefPtrWillBeMember<AnimationPlayer> > m_pending; |
WillBeHeapVector<RefPtrWillBeMember<AnimationPlayer> > m_waitingForCompositorAnimationStart; |
Timer<CompositorPendingAnimations> m_timer; |
+ int m_compositorGroup; |
}; |
} // namespace blink |