| Index: Source/core/animation/StringKeyframe.h
|
| diff --git a/Source/core/animation/StringKeyframe.h b/Source/core/animation/StringKeyframe.h
|
| index ccfed318ed4c3def41f1b5d54aca2c0ebb7560b7..bbc573f4897915f3704b31a7a409d0cae2189f97 100644
|
| --- a/Source/core/animation/StringKeyframe.h
|
| +++ b/Source/core/animation/StringKeyframe.h
|
| @@ -39,12 +39,12 @@ public:
|
| CSSValue* value() const { return m_value.get(); }
|
| void setEasing(PassRefPtrWillBeRawPtr<TimingFunction> easing) { m_easing = easing; }
|
|
|
| - virtual void ensureAnimatableValue(CSSPropertyID, Element&) const;
|
| + virtual void ensureAnimatableValue(CSSPropertyID, Element&, const LayoutStyle* baseStyle) const;
|
| virtual const PassRefPtrWillBeRawPtr<AnimatableValue> getAnimatableValue() const override final { return m_animatableValueCache.get(); }
|
| void setAnimatableValue(PassRefPtrWillBeRawPtr<AnimatableValue> value) { m_animatableValueCache = value; }
|
|
|
| virtual PassOwnPtrWillBeRawPtr<Keyframe::PropertySpecificKeyframe> neutralKeyframe(double offset, PassRefPtr<TimingFunction> easing) const override final;
|
| - virtual PassRefPtrWillBeRawPtr<Interpolation> maybeCreateInterpolation(CSSPropertyID, blink::Keyframe::PropertySpecificKeyframe& end, Element*) const override final;
|
| + virtual PassRefPtrWillBeRawPtr<Interpolation> maybeCreateInterpolation(CSSPropertyID, blink::Keyframe::PropertySpecificKeyframe& end, Element*, const LayoutStyle* baseStyle) const override final;
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
|
|