| Index: Source/core/animation/Animation.h
|
| diff --git a/Source/core/animation/Animation.h b/Source/core/animation/Animation.h
|
| index 807cbbb26a65e935c034ef985a27c6fa1c4aff0a..b1bfd98918b4318758b3b62b99ea60da97fe1f47 100644
|
| --- a/Source/core/animation/Animation.h
|
| +++ b/Source/core/animation/Animation.h
|
| @@ -72,7 +72,7 @@ public:
|
|
|
| virtual bool isAnimation() const OVERRIDE { return true; }
|
|
|
| - const Vector<RefPtr<Interpolation> >& activeInterpolations() const
|
| + const WillBeHeapVector<RefPtrWillBeMember<Interpolation> >& activeInterpolations() const
|
| {
|
| ASSERT(m_activeInterpolations);
|
| return *m_activeInterpolations;
|
| @@ -108,7 +108,7 @@ private:
|
| RefPtrWillBePersistent<AnimationEffect> m_effect;
|
|
|
| bool m_activeInAnimationStack;
|
| - OwnPtr<Vector<RefPtr<Interpolation> > > m_activeInterpolations;
|
| + OwnPtrWillBePersistent<WillBeHeapVector<RefPtrWillBeMember<Interpolation> > > m_activeInterpolations;
|
|
|
| Priority m_priority;
|
|
|
|
|