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

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

Issue 23874019: Web Animations CSS: Start running animations on the compositor (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Cleanup isRunning* and shouldCompositeForAnimation 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/AnimationEffect.h
diff --git a/Source/core/animation/AnimationEffect.h b/Source/core/animation/AnimationEffect.h
index 597ae7e7ed647a6c93b41f8e8f1eb7626c3917c1..6c3947864cbe1b042f8c9f9015fc843f8ef72e33 100644
--- a/Source/core/animation/AnimationEffect.h
+++ b/Source/core/animation/AnimationEffect.h
@@ -60,6 +60,7 @@ public:
typedef HashMap<CSSPropertyID, RefPtr<CompositableValue> > CompositableValueMap;
virtual PassOwnPtr<CompositableValueMap> sample(int iteration, double fraction) const = 0;
+ virtual bool affects(CSSPropertyID) { return false; };
Steve Block 2013/11/18 05:03:03 It looks like my comment in Animation::affects() i
dstockwell 2013/11/18 06:11:20 Done.
virtual bool isKeyframeAnimationEffect() const { return false; }
};

Powered by Google App Engine
This is Rietveld 408576698