Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(602)

Unified Diff: sky/engine/core/animation/CompositorPendingAnimations.h

Issue 772673002: Fix Animations, Remove Compostior Animations. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: cleanup Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sky/engine/core/animation/CompositorPendingAnimations.h
diff --git a/sky/engine/core/animation/CompositorPendingAnimations.h b/sky/engine/core/animation/CompositorPendingAnimations.h
index a350da1848fd7d2f0262771fb3ecde27f95e72cb..ef8a07de49a776cfd23cea24763bbe404068bf15 100644
--- a/sky/engine/core/animation/CompositorPendingAnimations.h
+++ b/sky/engine/core/animation/CompositorPendingAnimations.h
@@ -55,13 +55,12 @@ public:
// Returns whether we are waiting for an animation to start and should
// service again on the next frame.
bool update(bool startOnCompositor = true);
- void notifyCompositorAnimationStarted(double monotonicAnimationStartTime);
+ // void notifyCompositorAnimationStarted(double monotonicAnimationStartTime);
private:
void timerFired(Timer<CompositorPendingAnimations>*) { update(false); }
Vector<RefPtr<AnimationPlayer> > m_pending;
- Vector<RefPtr<AnimationPlayer> > m_waitingForCompositorAnimationStart;
Timer<CompositorPendingAnimations> m_timer;
};

Powered by Google App Engine
This is Rietveld 408576698