| Index: third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannel.cpp
|
| diff --git a/third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannel.cpp b/third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannel.cpp
|
| index 10e7c023f2fb5db7f853e806a2230d8b1da7c8ec..b2af8a940100845935de688b6254839ae3e35d59 100644
|
| --- a/third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannel.cpp
|
| +++ b/third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannel.cpp
|
| @@ -508,7 +508,7 @@ void DocumentWebSocketChannel::didReceiveData(WebSocketHandle* handle, bool fin,
|
| } else {
|
| OwnPtr<Vector<char>> binaryData = adoptPtr(new Vector<char>);
|
| binaryData->swap(m_receivingMessageData);
|
| - m_client->didReceiveBinaryMessage(binaryData.release());
|
| + m_client->didReceiveBinaryMessage(std::move(binaryData));
|
| }
|
| }
|
|
|
|
|