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

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

Issue 2650133002: Add TransitionInterpolation class for CSS Transition refactor (Closed)
Patch Set: lint Created 3 years, 10 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: third_party/WebKit/Source/core/animation/Interpolation.h
diff --git a/third_party/WebKit/Source/core/animation/Interpolation.h b/third_party/WebKit/Source/core/animation/Interpolation.h
index 1404f4cb0d7bbe039dea81458c10d6ae8ba12ff9..bde0825ed1cec08834421b74f7ebc7cb464192a8 100644
--- a/third_party/WebKit/Source/core/animation/Interpolation.h
+++ b/third_party/WebKit/Source/core/animation/Interpolation.h
@@ -27,6 +27,7 @@ class CORE_EXPORT Interpolation : public RefCounted<Interpolation> {
virtual bool isInvalidatableInterpolation() const { return false; }
virtual bool isLegacyStyleInterpolation() const { return false; }
+ virtual bool isTransitionInterpolation() const { return false; }
virtual const PropertyHandle& getProperty() const = 0;
virtual bool dependsOnUnderlyingValue() const { return false; }

Powered by Google App Engine
This is Rietveld 408576698