| Index: Source/core/animation/animatable/AnimatableRepeatable.h
|
| diff --git a/Source/core/animation/animatable/AnimatableRepeatable.h b/Source/core/animation/animatable/AnimatableRepeatable.h
|
| index c8dcfe0e83e49d2bef1da29c31913520a7f8de00..4223e4585a4645389561cba97920b8581e4401ce 100644
|
| --- a/Source/core/animation/animatable/AnimatableRepeatable.h
|
| +++ b/Source/core/animation/animatable/AnimatableRepeatable.h
|
| @@ -43,12 +43,12 @@ public:
|
| virtual ~AnimatableRepeatable() { }
|
|
|
| // This will consume the vector passed into it.
|
| - static PassRefPtrWillBeRawPtr<AnimatableRepeatable> create(WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& values)
|
| + static PassRefPtrWillBeRawPtr<AnimatableRepeatable> create(WillBeHeapVector<RefPtrWillBeMember<AnimatableValue>>& values)
|
| {
|
| return adoptRefWillBeNoop(new AnimatableRepeatable(values));
|
| }
|
|
|
| - const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& values() const { return m_values; }
|
| + const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue>>& values() const { return m_values; }
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| @@ -56,17 +56,17 @@ protected:
|
| AnimatableRepeatable()
|
| {
|
| }
|
| - AnimatableRepeatable(WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& values)
|
| + AnimatableRepeatable(WillBeHeapVector<RefPtrWillBeMember<AnimatableValue>>& values)
|
| {
|
| ASSERT(!values.isEmpty());
|
| m_values.swap(values);
|
| }
|
|
|
| - static bool interpolateLists(const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& fromValues, const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& toValues, double fraction, WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& interpolatedValues);
|
| + static bool interpolateLists(const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue>>& fromValues, const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue>>& toValues, double fraction, WillBeHeapVector<RefPtrWillBeMember<AnimatableValue>>& interpolatedValues);
|
|
|
| virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const override;
|
|
|
| - WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> > m_values;
|
| + WillBeHeapVector<RefPtrWillBeMember<AnimatableValue>> m_values;
|
|
|
| private:
|
| virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override;
|
|
|