| Index: third_party/WebKit/Source/core/css/CSSValue.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSValue.h b/third_party/WebKit/Source/core/css/CSSValue.h
|
| index 84fca530ed1730a07241eed5bf12703457d86b55..78a3beb7f36770a103f6500e54c5e81e58578545 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSValue.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSValue.h
|
| @@ -129,6 +129,9 @@ class CORE_EXPORT CSSValue : public GarbageCollectedFinalized<CSSValue> {
|
| bool IsStepsTimingFunctionValue() const {
|
| return class_type_ == kStepsTimingFunctionClass;
|
| }
|
| + bool IsFramesTimingFunctionValue() const {
|
| + return class_type_ == kFramesTimingFunctionClass;
|
| + }
|
| bool IsGridTemplateAreasValue() const {
|
| return class_type_ == kGridTemplateAreasClass;
|
| }
|
| @@ -202,6 +205,7 @@ class CORE_EXPORT CSSValue : public GarbageCollectedFinalized<CSSValue> {
|
| // Timing function classes.
|
| kCubicBezierTimingFunctionClass,
|
| kStepsTimingFunctionClass,
|
| + kFramesTimingFunctionClass,
|
|
|
| // Other class types.
|
| kBorderImageSliceClass,
|
|
|