| Index: third_party/WebKit/Source/web/WebPepperSocketImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebPepperSocketImpl.cpp b/third_party/WebKit/Source/web/WebPepperSocketImpl.cpp
|
| index c49cf0dd5a023cfd542089e74aa257c1e13c1eef..575c242dcc5103559909ecc48e10d276292898b6 100644
|
| --- a/third_party/WebKit/Source/web/WebPepperSocketImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebPepperSocketImpl.cpp
|
| @@ -53,8 +53,8 @@ WebPepperSocketImpl::WebPepperSocketImpl(const WebDocument& document, WebPepperS
|
| , m_bufferedAmount(0)
|
| , m_bufferedAmountAfterClose(0)
|
| {
|
| - RawPtr<Document> coreDocument = RawPtr<Document>(document);
|
| - m_private = DocumentWebSocketChannel::create(coreDocument.get(), m_channelProxy.get());
|
| + Document* coreDocument = document;
|
| + m_private = DocumentWebSocketChannel::create(coreDocument, m_channelProxy.get());
|
| }
|
|
|
| WebPepperSocketImpl::~WebPepperSocketImpl()
|
|
|