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

Unified Diff: Source/core/animation/DocumentAnimations.h

Issue 135693003: Defer starting of animations until after compositing update (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Reland after fixing flaky tests. Created 6 years, 10 months 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
« no previous file with comments | « Source/core/animation/AnimationClockTest.cpp ('k') | Source/core/animation/DocumentAnimations.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/DocumentAnimations.h
diff --git a/Source/core/animation/DocumentAnimations.h b/Source/core/animation/DocumentAnimations.h
index b952c532ec16b927ce4eb7b7a61a17b57eb18134..d6b871e0730b53fc89f635ccfa4ce553a9d596c6 100644
--- a/Source/core/animation/DocumentAnimations.h
+++ b/Source/core/animation/DocumentAnimations.h
@@ -41,9 +41,11 @@ class Node;
class DocumentAnimations {
public:
- static void serviceOnAnimationFrame(Document&, double monotonicAnimationStartTime);
- static void serviceBeforeGetComputedStyle(Node&, CSSPropertyID);
- static void serviceAfterStyleRecalc(Document&);
+ static void dispatchAnimationEvents(Document&);
+ static void dispatchAnimationEventsAsync(Document&);
+ static void updateAnimationTimingForAnimationFrame(Document&, double monotonicAnimationStartTime);
+ static void updateAnimationTimingForGetComputedStyle(Node&, CSSPropertyID);
+ static void startPendingAnimations(Document&);
private:
DocumentAnimations() { }
« no previous file with comments | « Source/core/animation/AnimationClockTest.cpp ('k') | Source/core/animation/DocumentAnimations.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698