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

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

Issue 46043014: Web Animations CSS: Unfreeze AnimationClock if sampling timelines does not trigger style recalc (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Reinstate assert 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/animation/InertAnimation.h
diff --git a/Source/core/animation/InertAnimation.h b/Source/core/animation/InertAnimation.h
index b4f31e4b359bb03dcf58da94ff1fa05ecd4b7546..d15489127e649c8dd76991c17e767c26e385f5e3 100644
--- a/Source/core/animation/InertAnimation.h
+++ b/Source/core/animation/InertAnimation.h
@@ -46,7 +46,7 @@ public:
bool paused() const { return m_paused; }
protected:
- virtual void updateChildrenAndEffects() const OVERRIDE { };
+ virtual bool updateChildrenAndEffects() const OVERRIDE { return false; };
virtual void willDetach() OVERRIDE { };
virtual double calculateTimeToEffectChange(double inheritedTime, double activeTime, Phase) const OVERRIDE FINAL;

Powered by Google App Engine
This is Rietveld 408576698