Index: Source/core/animation/AnimationTest.cpp |
diff --git a/Source/core/animation/AnimationTest.cpp b/Source/core/animation/AnimationTest.cpp |
index 77a11401b332fbd54d0fe724bacdd2b2b11046cd..9a041af17ffc9839ee5e43b41f4a55e48a14d0a8 100644 |
--- a/Source/core/animation/AnimationTest.cpp |
+++ b/Source/core/animation/AnimationTest.cpp |
@@ -44,11 +44,11 @@ protected: |
template<typename T> |
static PassRefPtrWillBeRawPtr<Animation> createAnimation(Element* element, Vector<Dictionary> keyframeDictionaryVector, T timingInput, ExceptionState& exceptionState) |
{ |
- return Animation::create(element, EffectInput::convert(element, keyframeDictionaryVector, exceptionState, true), timingInput); |
+ return Animation::create(element, EffectInput::convert(element, keyframeDictionaryVector, exceptionState), timingInput); |
} |
static PassRefPtrWillBeRawPtr<Animation> createAnimation(Element* element, Vector<Dictionary> keyframeDictionaryVector, ExceptionState& exceptionState) |
{ |
- return Animation::create(element, EffectInput::convert(element, keyframeDictionaryVector, exceptionState, true)); |
+ return Animation::create(element, EffectInput::convert(element, keyframeDictionaryVector, exceptionState)); |
} |
v8::Isolate* m_isolate; |