| 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 0890c76a74c40a6c9502826d7d85466b2bc0be33..b69ad586316b7149a8d7a64f33fea2aecd57159c 100644
 | 
| --- a/third_party/WebKit/Source/core/animation/Animation.cpp
 | 
| +++ b/third_party/WebKit/Source/core/animation/Animation.cpp
 | 
| @@ -657,7 +657,7 @@ void Animation::stop()
 | 
|      m_pendingFinishedEvent = nullptr;
 | 
|  }
 | 
|  
 | 
| -DispatchEventResult Animation::dispatchEventInternal(PassRefPtrWillBeRawPtr<Event> event)
 | 
| +DispatchEventResult Animation::dispatchEventInternal(RawPtr<Event> event)
 | 
|  {
 | 
|      if (m_pendingFinishedEvent == event)
 | 
|          m_pendingFinishedEvent = nullptr;
 | 
| @@ -1053,7 +1053,7 @@ Animation::PlayStateUpdateScope::~PlayStateUpdateScope()
 | 
|          InspectorInstrumentation::animationPlayStateChanged(m_animation->timeline()->document(), m_animation, oldPlayState, newPlayState);
 | 
|  }
 | 
|  
 | 
| -bool Animation::addEventListenerInternal(const AtomicString& eventType, PassRefPtrWillBeRawPtr<EventListener> listener, const EventListenerOptions& options)
 | 
| +bool Animation::addEventListenerInternal(const AtomicString& eventType, RawPtr<EventListener> listener, const EventListenerOptions& options)
 | 
|  {
 | 
|      if (eventType == EventTypeNames::finish)
 | 
|          UseCounter::count(getExecutionContext(), UseCounter::AnimationFinishEvent);
 | 
| 
 |