| Index: third_party/WebKit/Source/core/animation/Animation.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/Animation.cpp b/third_party/WebKit/Source/core/animation/Animation.cpp
|
| index 3ead492e4428242e17e4cd57f018dcd868863273..863087ae3c4a6637dc0f02ea909ccd11f6ab71ea 100644
|
| --- a/third_party/WebKit/Source/core/animation/Animation.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/Animation.cpp
|
| @@ -1049,11 +1049,11 @@ Animation::PlayStateUpdateScope::~PlayStateUpdateScope()
|
| InspectorInstrumentation::animationPlayStateChanged(m_animation->timeline()->document(), m_animation, oldPlayState, newPlayState);
|
| }
|
|
|
| -bool Animation::addEventListenerInternal(const AtomicString& eventType, EventListener* listener, const EventListenerOptions& options)
|
| +void Animation::addedEventListener(const AtomicString& eventType, RegisteredEventListener& registeredListener)
|
| {
|
| + EventTargetWithInlineData::addedEventListener(eventType, registeredListener);
|
| if (eventType == EventTypeNames::finish)
|
| UseCounter::count(getExecutionContext(), UseCounter::AnimationFinishEvent);
|
| - return EventTargetWithInlineData::addEventListenerInternal(eventType, listener, options);
|
| }
|
|
|
| void Animation::pauseForTesting(double pauseTime)
|
|
|