| Index: third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp | 
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp | 
| index bb49a92636b36105e098ff505f056116bf5554a2..5cad7402d70a088125e82a2efd103f7fca606099 100644 | 
| --- a/third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp | 
| +++ b/third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp | 
| @@ -357,7 +357,7 @@ void InspectorAnimationAgent::setTiming(ErrorString* errorString, const String& | 
| } | 
| } | 
|  | 
| -void InspectorAnimationAgent::resolveAnimation(ErrorString* errorString, const String& animationId, std::unique_ptr<protocol::Runtime::RemoteObject>* result) | 
| +void InspectorAnimationAgent::resolveAnimation(ErrorString* errorString, const String& animationId, std::unique_ptr<protocol::Runtime::Exported::RemoteObject>* result) | 
| { | 
| blink::Animation* animation = assertAnimation(errorString, animationId); | 
| if (!animation) | 
| @@ -375,7 +375,7 @@ void InspectorAnimationAgent::resolveAnimation(ErrorString* errorString, const S | 
|  | 
| ScriptState::Scope scope(scriptState); | 
| m_v8Session->releaseObjectGroup("animation"); | 
| -    *result = m_v8Session->wrapObject(scriptState->context(), toV8(animation, scriptState->context()->Global(), scriptState->isolate()), "animation", false); | 
| +    *result = m_v8Session->wrapObject(scriptState->context(), toV8(animation, scriptState->context()->Global(), scriptState->isolate()), "animation"); | 
| if (!*result) | 
| *errorString = "Element not associated with a document."; | 
| } | 
|  |