Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1503)

Unified Diff: third_party/WebKit/Source/web/WebPepperSocketImpl.cpp

Issue 1865813002: Remove RawPtr from Source/web/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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()
« no previous file with comments | « third_party/WebKit/Source/web/WebPagePopupImpl.cpp ('k') | third_party/WebKit/Source/web/WebPerformance.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698