| Index: Source/core/animation/KeyframeEffectModel.cpp
|
| diff --git a/Source/core/animation/KeyframeEffectModel.cpp b/Source/core/animation/KeyframeEffectModel.cpp
|
| index ae1252f313d7ff899e337aba1f33cd08b5046384..b038ba0cb0dbcb704c2ab8e2af8c2f14e4d5d6ce 100644
|
| --- a/Source/core/animation/KeyframeEffectModel.cpp
|
| +++ b/Source/core/animation/KeyframeEffectModel.cpp
|
| @@ -117,14 +117,14 @@ PropertySet KeyframeEffectModel::properties() const
|
| return result;
|
| }
|
|
|
| -PassOwnPtr<Vector<RefPtr<Interpolation> > > KeyframeEffectModel::sample(int iteration, double fraction) const
|
| +PassOwnPtr<Vector<RefPtr<Interpolation> > > KeyframeEffectModel::sample(int iteration, double fraction, double iterationDuration) const
|
| {
|
| ASSERT(iteration >= 0);
|
| ASSERT(!isNull(fraction));
|
| ensureKeyframeGroups();
|
| ensureInterpolationEffect();
|
|
|
| - return m_interpolationEffect->getActiveInterpolations(fraction);
|
| + return m_interpolationEffect->getActiveInterpolations(fraction, iterationDuration);
|
| }
|
|
|
| KeyframeEffectModel::KeyframeVector KeyframeEffectModel::normalizedKeyframes(const KeyframeVector& keyframes)
|
|
|