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

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

Issue 22707006: Web Animations CSS: Assert underlying value is not used (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Changed to assert Created 7 years, 4 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
Index: Source/core/animation/AnimationEffect.h
diff --git a/Source/core/animation/AnimationEffect.h b/Source/core/animation/AnimationEffect.h
index 57b053b217cc897f16530cdeec57a19a7bfba93f..89b3494c557c3deb61bab028c0f13268d6b09dd3 100644
--- a/Source/core/animation/AnimationEffect.h
+++ b/Source/core/animation/AnimationEffect.h
@@ -52,6 +52,7 @@ public:
class CompositableValue : public RefCounted<CompositableValue> {
public:
virtual ~CompositableValue() { }
+ virtual bool dependsOnUnderlyingValue() const = 0;
virtual PassRefPtr<AnimatableValue> compositeOnto(const AnimatableValue*) const = 0;
};

Powered by Google App Engine
This is Rietveld 408576698