Chromium Code Reviews| Index: Source/core/animation/Animation.h |
| diff --git a/Source/core/animation/Animation.h b/Source/core/animation/Animation.h |
| index abc1be35e82ba28cab42075d6a46bb3f3c48596c..087abd419a5fc14aae903d7b78f25527b1e9e975 100644 |
| --- a/Source/core/animation/Animation.h |
| +++ b/Source/core/animation/Animation.h |
| @@ -71,10 +71,10 @@ public: |
| virtual bool isAnimation() const OVERRIDE { return true; } |
| - const AnimationEffect::CompositableValueList* compositableValues() const |
| + const Vector<RefPtr<Interpolation> >* activeInterpolations() const |
| { |
| - ASSERT(m_compositableValues); |
| - return m_compositableValues.get(); |
| + ASSERT(m_activeInterpolations); |
|
dstockwell
2014/03/17 02:05:57
If it can't be null, return a reference?
shans
2014/03/18 20:09:28
Done.
|
| + return m_activeInterpolations.get(); |
| } |
| bool affects(CSSPropertyID) const; |
| @@ -107,7 +107,7 @@ private: |
| RefPtrWillBePersistent<AnimationEffect> m_effect; |
| bool m_activeInAnimationStack; |
| - OwnPtr<AnimationEffect::CompositableValueList> m_compositableValues; |
| + OwnPtr<Vector<RefPtr<Interpolation> > > m_activeInterpolations; |
| Priority m_priority; |