| Index: third_party/WebKit/Source/core/animation/animatable/AnimatableValue.h
|
| diff --git a/third_party/WebKit/Source/core/animation/animatable/AnimatableValue.h b/third_party/WebKit/Source/core/animation/animatable/AnimatableValue.h
|
| index 797e6b08a9e47eaa6e92a14b86139b8b05867bec..8d0fcba92d66d2290c068b1f62e07833be2b9af1 100644
|
| --- a/third_party/WebKit/Source/core/animation/animatable/AnimatableValue.h
|
| +++ b/third_party/WebKit/Source/core/animation/animatable/AnimatableValue.h
|
| @@ -72,6 +72,7 @@ public:
|
| bool isLengthPoint3D() const { return type() == TypeLengthPoint3D; }
|
| bool isLengthSize() const { return type() == TypeLengthSize; }
|
| bool isNeutral() const { return type() == TypeNeutral; }
|
| + bool isPath() const { return type() == TypePath; }
|
| bool isRepeatable() const { return type() == TypeRepeatable; }
|
| bool isSVGLength() const { return type() == TypeSVGLength; }
|
| bool isSVGPaint() const { return type() == TypeSVGPaint; }
|
| @@ -103,6 +104,7 @@ protected:
|
| TypeLengthPoint3D,
|
| TypeLengthSize,
|
| TypeNeutral,
|
| + TypePath,
|
| TypeRepeatable,
|
| TypeSVGLength,
|
| TypeSVGPaint,
|
|
|