Index: third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp |
diff --git a/third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp b/third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp |
index 62169ab76a67887a79619b90a23a4da218e58f30..1e16bcafca7b53dc99b65c58268d26e646ffcd00 100644 |
--- a/third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp |
+++ b/third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp |
@@ -49,8 +49,9 @@ KeyframeEffectReadOnly* KeyframeEffectReadOnly::create( |
Timing timing; |
if (!TimingInput::convert(duration, timing, exceptionState)) |
return nullptr; |
- return create(element, EffectInput::convert(element, effectInput, |
- executionContext, exceptionState), |
+ return create(element, |
+ EffectInput::convert(element, effectInput, executionContext, |
+ exceptionState), |
timing); |
} |
@@ -70,8 +71,9 @@ KeyframeEffectReadOnly* KeyframeEffectReadOnly::create( |
Document* document = element ? &element->document() : nullptr; |
if (!TimingInput::convert(timingInput, timing, document, exceptionState)) |
return nullptr; |
- return create(element, EffectInput::convert(element, effectInput, |
- executionContext, exceptionState), |
+ return create(element, |
+ EffectInput::convert(element, effectInput, executionContext, |
+ exceptionState), |
timing); |
} |
@@ -86,8 +88,9 @@ KeyframeEffectReadOnly* KeyframeEffectReadOnly::create( |
element->document(), |
UseCounter::AnimationConstructorKeyframeListEffectNoTiming); |
} |
- return create(element, EffectInput::convert(element, effectInput, |
- executionContext, exceptionState), |
+ return create(element, |
+ EffectInput::convert(element, effectInput, executionContext, |
+ exceptionState), |
Timing()); |
} |