| Index: third_party/WebKit/Source/core/css/CSSTimingFunctionValue.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSTimingFunctionValue.cpp b/third_party/WebKit/Source/core/css/CSSTimingFunctionValue.cpp
|
| index 5bd6c7d8073d4a00dd66449511f31ae47b476163..b1e3d6c04b27eca7fde4012131006cc63f85507b 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSTimingFunctionValue.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSTimingFunctionValue.cpp
|
| @@ -61,4 +61,13 @@ bool CSSStepsTimingFunctionValue::Equals(
|
| return steps_ == other.steps_ && step_position_ == other.step_position_;
|
| }
|
|
|
| +String CSSFramesTimingFunctionValue::CustomCSSText() const {
|
| + return "frames(" + String::Number(frames_) + ")";
|
| +}
|
| +
|
| +bool CSSFramesTimingFunctionValue::Equals(
|
| + const CSSFramesTimingFunctionValue& other) const {
|
| + return frames_ == other.frames_;
|
| +}
|
| +
|
| } // namespace blink
|
|
|