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

Unified Diff: third_party/WebKit/Source/web/WebPepperSocketChannelClientProxy.h

Issue 1916703002: Prepare for move-only PassOwnPtr in the remaining directories. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@core1
Patch Set: Merge with trunk. 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/WebPepperSocketChannelClientProxy.h
diff --git a/third_party/WebKit/Source/web/WebPepperSocketChannelClientProxy.h b/third_party/WebKit/Source/web/WebPepperSocketChannelClientProxy.h
index 07c9f6afd8f78f496c8ebb6cd0f65cd3a6b0fd86..0c35cbe059506d1f38d0f6b2715d4d59cdecf54d 100644
--- a/third_party/WebKit/Source/web/WebPepperSocketChannelClientProxy.h
+++ b/third_party/WebKit/Source/web/WebPepperSocketChannelClientProxy.h
@@ -38,7 +38,7 @@ public:
}
void didReceiveBinaryMessage(PassOwnPtr<Vector<char>> payload) override
{
- m_impl->didReceiveBinaryMessage(payload);
+ m_impl->didReceiveBinaryMessage(std::move(payload));
}
void didError() override
{
« no previous file with comments | « third_party/WebKit/Source/web/WebLocalFrameImpl.cpp ('k') | third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698