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 0c35cbe059506d1f38d0f6b2715d4d59cdecf54d..fc714ba5873b1bc3f2fe853d8f1d7f09b4ea8604 100644 |
--- a/third_party/WebKit/Source/web/WebPepperSocketChannelClientProxy.h |
+++ b/third_party/WebKit/Source/web/WebPepperSocketChannelClientProxy.h |
@@ -8,9 +8,9 @@ |
#include "modules/websockets/WebSocketChannelClient.h" |
#include "platform/heap/Handle.h" |
#include "web/WebPepperSocketImpl.h" |
-#include "wtf/PassOwnPtr.h" |
#include "wtf/Vector.h" |
#include "wtf/text/WTFString.h" |
+#include <memory> |
#include <stdint.h> |
namespace blink { |
@@ -36,7 +36,7 @@ public: |
{ |
m_impl->didReceiveTextMessage(payload); |
} |
- void didReceiveBinaryMessage(PassOwnPtr<Vector<char>> payload) override |
+ void didReceiveBinaryMessage(std::unique_ptr<Vector<char>> payload) override |
{ |
m_impl->didReceiveBinaryMessage(std::move(payload)); |
} |