| Index: Source/core/animation/KeyframeEffectModel.h
|
| diff --git a/Source/core/animation/KeyframeEffectModel.h b/Source/core/animation/KeyframeEffectModel.h
|
| index c181d97b5c88fcbb245cd4fd6a0da785465e5415..e098a161eb417e38c001c178d34ec2276fabc779 100644
|
| --- a/Source/core/animation/KeyframeEffectModel.h
|
| +++ b/Source/core/animation/KeyframeEffectModel.h
|
| @@ -116,14 +116,14 @@ public:
|
| PropertySpecificKeyframe(double offset, PassRefPtr<TimingFunction> easing, const AnimatableValue*, CompositeOperation);
|
| double offset() const { return m_offset; }
|
| TimingFunction* easing() const { return m_easing.get(); }
|
| - const CompositableValue* value() const { return m_value.get(); }
|
| + const AnimatableValue* value() const { return m_value.get(); }
|
| PassOwnPtr<PropertySpecificKeyframe> cloneWithOffset(double offset) const;
|
| private:
|
| // Used by cloneWithOffset().
|
| - PropertySpecificKeyframe(double offset, PassRefPtr<TimingFunction> easing, PassRefPtr<CompositableValue>);
|
| + PropertySpecificKeyframe(double offset, PassRefPtr<TimingFunction> easing, PassRefPtr<AnimatableValue>);
|
| double m_offset;
|
| RefPtr<TimingFunction> m_easing;
|
| - RefPtr<CompositableValue> m_value;
|
| + RefPtr<AnimatableValue> m_value;
|
| };
|
|
|
| class PropertySpecificKeyframeGroup {
|
|
|