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

Unified Diff: third_party/WebKit/Source/web/WebSocketImpl.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/WebSocketImpl.h
diff --git a/third_party/WebKit/Source/web/WebSocketImpl.h b/third_party/WebKit/Source/web/WebSocketImpl.h
index 8ae7b8204585267bd989a3cfaf5429c839e22c80..25636c5ad0bf6e9f5493152c47dc9f4db6cc6a3f 100644
--- a/third_party/WebKit/Source/web/WebSocketImpl.h
+++ b/third_party/WebKit/Source/web/WebSocketImpl.h
@@ -42,6 +42,7 @@
namespace blink {
+class BlobDataHandle;
class WebDocument;
class WebSocketChannel;
class WebSocketChannelClientProxy;
@@ -69,7 +70,8 @@ public:
// WebSocketChannelClient methods proxied by WebSocketChannelClientProxy.
void didConnect(const String& subprotocol, const String& extensions);
void didReceiveTextMessage(const String& payload);
- void didReceiveBinaryMessage(PassOwnPtr<Vector<char>> payload);
+ void didReceiveArrayBuffer(PassOwnPtr<Vector<char>> payload);
+ void didReceiveBlob(PassRefPtr<BlobDataHandle>);
void didError();
void didConsumeBufferedAmount(unsigned long consumed);
void didStartClosingHandshake();
« no previous file with comments | « third_party/WebKit/Source/web/WebSocketChannelClientProxy.h ('k') | third_party/WebKit/Source/web/WebSocketImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698