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

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

Issue 98663004: Add support for unprefixed CSS Transforms (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase. Created 6 years, 9 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/AnimatableLengthPoint3D.cpp ('k') | Source/core/animation/CompositorAnimations.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/AnimatableValue.h
diff --git a/Source/core/animation/AnimatableValue.h b/Source/core/animation/AnimatableValue.h
index 47046a2958fc38c250efecb9637a92ed18492920..6dc6e9d4ac3eeba6afc804014e918c3bf3acbd01 100644
--- a/Source/core/animation/AnimatableValue.h
+++ b/Source/core/animation/AnimatableValue.h
@@ -70,6 +70,7 @@ public:
bool isLengthBox() const { return type() == TypeLengthBox; }
bool isLengthBoxAndBool() const { return type() == TypeLengthBoxAndBool; }
bool isLengthPoint() const { return type() == TypeLengthPoint; }
+ bool isLengthPoint3D() const { return type() == TypeLengthPoint3D; }
bool isLengthSize() const { return type() == TypeLengthSize; }
bool isNeutral() const { return type() == TypeNeutral; }
bool isRepeatable() const { return type() == TypeRepeatable; }
@@ -101,6 +102,7 @@ protected:
TypeLengthBox,
TypeLengthBoxAndBool,
TypeLengthPoint,
+ TypeLengthPoint3D,
TypeLengthSize,
TypeNeutral,
TypeRepeatable,
« no previous file with comments | « Source/core/animation/AnimatableLengthPoint3D.cpp ('k') | Source/core/animation/CompositorAnimations.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698