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

Unified Diff: Source/core/frame/animation/AnimationController.h

Issue 23874019: Web Animations CSS: Start running animations on the compositor (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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: Source/core/frame/animation/AnimationController.h
diff --git a/Source/core/frame/animation/AnimationController.h b/Source/core/frame/animation/AnimationController.h
index 01cf32699babf565f25810f8b187bcb63a9cecbf..37ed6bc6339e25e68c2a5ac65b26e36048f81381 100644
--- a/Source/core/frame/animation/AnimationController.h
+++ b/Source/core/frame/animation/AnimationController.h
@@ -59,9 +59,9 @@ public:
void pauseAnimationsForTesting(double t);
unsigned numberOfActiveAnimations(Document*) const; // To be used only for testing
- bool isRunningAnimationOnRenderer(RenderObject*, CSSPropertyID, bool isRunningNow = true) const;
- bool isRunningAcceleratableAnimationOnRenderer(RenderObject*) const;
- bool isRunningAcceleratedAnimationOnRenderer(RenderObject*, CSSPropertyID, bool isRunningNow = true) const;
+ bool isRunningAnimationOnRenderer(const RenderObject*, CSSPropertyID, bool isRunningNow = true) const;
+ bool isRunningAcceleratableAnimationOnRenderer(const RenderObject*) const;
+ bool isRunningAcceleratedAnimationOnRenderer(const RenderObject*, CSSPropertyID, bool isRunningNow = true) const;
void serviceAnimations();

Powered by Google App Engine
This is Rietveld 408576698