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

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
Index: Source/core/animation/AnimatableValue.h
diff --git a/Source/core/animation/AnimatableValue.h b/Source/core/animation/AnimatableValue.h
index 58ce56e3cf02a7d787e17f18b3c832655c501856..211b49ddfd217f8b7b05b2a0124cb374fbc1f794 100644
--- a/Source/core/animation/AnimatableValue.h
+++ b/Source/core/animation/AnimatableValue.h
@@ -69,6 +69,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; }
@@ -98,6 +99,7 @@ protected:
TypeLengthBox,
TypeLengthBoxAndBool,
TypeLengthPoint,
+ TypeLengthPoint3D,
TypeLengthSize,
TypeNeutral,
TypeRepeatable,

Powered by Google App Engine
This is Rietveld 408576698