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

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

Issue 1666893003: [ABANDONED] WebSocket Blob receive in the browser process: renderer changes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@websocket_blob_receive_host_merged
Patch Set: Created 4 years, 10 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/WebSocketChannelClientProxy.h
diff --git a/third_party/WebKit/Source/web/WebSocketChannelClientProxy.h b/third_party/WebKit/Source/web/WebSocketChannelClientProxy.h
index fe17744936f2837216e7c1d489a2a02f40635e51..105ebdb09462800f20f828e049e419178878e28e 100644
--- a/third_party/WebKit/Source/web/WebSocketChannelClientProxy.h
+++ b/third_party/WebKit/Source/web/WebSocketChannelClientProxy.h
@@ -36,9 +36,13 @@ public:
{
m_impl->didReceiveTextMessage(payload);
}
- void didReceiveBinaryMessage(PassOwnPtr<Vector<char>> payload) override
+ void didReceiveArrayBuffer(PassOwnPtr<Vector<char>> payload) override
{
- m_impl->didReceiveBinaryMessage(payload);
+ m_impl->didReceiveArrayBuffer(payload);
+ }
+ void didReceiveBlob(PassRefPtr<BlobDataHandle> blob) override
+ {
+ m_impl->didReceiveBlob(blob);
}
void didError() override
{
« no previous file with comments | « third_party/WebKit/Source/modules/websockets/WorkerWebSocketChannel.cpp ('k') | third_party/WebKit/Source/web/WebSocketImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698