| Index: third_party/WebKit/Source/core/animation/KeyframeEffect.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/KeyframeEffect.cpp b/third_party/WebKit/Source/core/animation/KeyframeEffect.cpp
|
| index 73e5e3868c379627062195772c6960adf7096722..4f001bcf8c8b18f03b48da622c917912d0ac9116 100644
|
| --- a/third_party/WebKit/Source/core/animation/KeyframeEffect.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/KeyframeEffect.cpp
|
| @@ -183,10 +183,10 @@ void KeyframeEffect::applyEffects()
|
| ASSERT(iteration >= 0);
|
| bool changed = false;
|
| if (m_sampledEffect) {
|
| - changed = m_model->sample(clampTo<int>(iteration, 0), timeFraction(), iterationDuration(), m_sampledEffect->mutableInterpolations());
|
| + changed = m_model->sample(clampTo<int>(iteration, 0), progress(), iterationDuration(), m_sampledEffect->mutableInterpolations());
|
| } else {
|
| Vector<RefPtr<Interpolation>> interpolations;
|
| - m_model->sample(clampTo<int>(iteration, 0), timeFraction(), iterationDuration(), interpolations);
|
| + m_model->sample(clampTo<int>(iteration, 0), progress(), iterationDuration(), interpolations);
|
| if (!interpolations.isEmpty()) {
|
| SampledEffect* sampledEffect = SampledEffect::create(this);
|
| sampledEffect->mutableInterpolations().swap(interpolations);
|
|
|