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

Unified Diff: third_party/WebKit/public/platform/modules/websockets/WebSocketHandleClient.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
« no previous file with comments | « third_party/WebKit/public/platform/modules/websockets/WebSocketHandle.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/platform/modules/websockets/WebSocketHandleClient.h
diff --git a/third_party/WebKit/public/platform/modules/websockets/WebSocketHandleClient.h b/third_party/WebKit/public/platform/modules/websockets/WebSocketHandleClient.h
index 249d5d02cb289fbbe7555b5d9e50261d518c87c9..186639f6f572d07cf7f8787ba2490968e5df09e8 100644
--- a/third_party/WebKit/public/platform/modules/websockets/WebSocketHandleClient.h
+++ b/third_party/WebKit/public/platform/modules/websockets/WebSocketHandleClient.h
@@ -65,6 +65,9 @@ public:
// Called when data are received.
virtual void didReceiveData(WebSocketHandle*, bool fin, WebSocketHandle::MessageType, const char* data, size_t /* size */) = 0;
+ // Called when a blob is received.
+ virtual void didReceiveBlob(WebSocketHandle*, const WebString& uuid, uint64_t size) = 0;
+
// Called when the handle is closed.
// |handle| becomes unavailable once this notification arrives.
virtual void didClose(WebSocketHandle* /* handle */, bool wasClean, unsigned short code, const WebString& reason) = 0;
« no previous file with comments | « third_party/WebKit/public/platform/modules/websockets/WebSocketHandle.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698