| 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;
|
|
|