| Index: Source/core/animation/KeyframeEffect.cpp
|
| diff --git a/Source/core/animation/KeyframeEffect.cpp b/Source/core/animation/KeyframeEffect.cpp
|
| index 1ff34a21e423f4a372296c4d89ef710b7a7ddf1c..03310455be291858237c65467136a89da82e525a 100644
|
| --- a/Source/core/animation/KeyframeEffect.cpp
|
| +++ b/Source/core/animation/KeyframeEffect.cpp
|
| @@ -172,7 +172,7 @@ void KeyframeEffect::applyEffects()
|
|
|
| double iteration = currentIteration();
|
| ASSERT(iteration >= 0);
|
| - OwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation>>> interpolations = m_sampledEffect ? m_sampledEffect->mutableInterpolations() : nullptr;
|
| + OwnPtr<Vector<RefPtr<Interpolation>>> interpolations = m_sampledEffect ? m_sampledEffect->mutableInterpolations() : nullptr;
|
| // FIXME: Handle iteration values which overflow int.
|
| m_model->sample(static_cast<int>(iteration), timeFraction(), iterationDuration(), interpolations);
|
| if (m_sampledEffect) {
|
|
|