| Index: third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp
|
| index 0eccb8287798b892b54c0b526a988ef069b228e5..8e47b2770292328e87c1a842593397e6a737d09c 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp
|
| @@ -585,7 +585,7 @@ static void inspectImpl(const v8::FunctionCallbackInfo<v8::Value>& info, bool co
|
| if (copyToClipboard)
|
| hints->setBoolean("copyToClipboard", true);
|
| if (V8InspectorSessionImpl* session = helper.currentSession())
|
| - session->runtimeAgentImpl()->inspect(wrappedObject.release(), hints.release());
|
| + session->runtimeAgentImpl()->inspect(std::move(wrappedObject), std::move(hints));
|
| }
|
|
|
| void V8Console::inspectCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
|
|
|