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

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

Issue 1153943003: Add foundation for removing AnimatableValues from StyleInterpolation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Review changes Created 5 years, 6 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/InterpolableValue.h ('k') | Source/core/animation/Interpolation.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/Interpolation.h
diff --git a/Source/core/animation/Interpolation.h b/Source/core/animation/Interpolation.h
index c3c62cd9219b4dada27cc4aa122ca627a45856de..57bc190de611f45c5b67115518efb85ec19ade23 100644
--- a/Source/core/animation/Interpolation.h
+++ b/Source/core/animation/Interpolation.h
@@ -17,9 +17,10 @@ class CORE_EXPORT Interpolation : public RefCountedWillBeGarbageCollectedFinaliz
public:
virtual ~Interpolation();
- void interpolate(int iteration, double fraction) const;
+ virtual void interpolate(int iteration, double fraction);
virtual bool isStyleInterpolation() const { return false; }
+ virtual bool isInvalidatableStyleInterpolation() const { return false; }
virtual bool isLegacyStyleInterpolation() const { return false; }
virtual bool isSVGInterpolation() const { return false; }
« no previous file with comments | « Source/core/animation/InterpolableValue.h ('k') | Source/core/animation/Interpolation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698