| Index: content/child/websocket_bridge.h
|
| diff --git a/content/child/websocket_bridge.h b/content/child/websocket_bridge.h
|
| index ab5e3dca0194a4e84660f230330ed1985cbcc25c..74423be2d76ac69d9e72bf9450fe94d22da4d7eb 100644
|
| --- a/content/child/websocket_bridge.h
|
| +++ b/content/child/websocket_bridge.h
|
| @@ -41,6 +41,8 @@ class WebSocketBridge : public blink::WebSocketHandle {
|
| size_t size) override;
|
| void flowControl(int64_t quota) override;
|
| void close(unsigned short code, const blink::WebString& reason) override;
|
| + void changeBinaryType(BinaryType new_binary_type) override;
|
| + void confirmBlob() override;
|
|
|
| void Disconnect();
|
|
|
| @@ -59,6 +61,7 @@ class WebSocketBridge : public blink::WebSocketHandle {
|
| void DidReceiveData(bool fin,
|
| WebSocketMessageType type,
|
| const std::vector<char>& data);
|
| + void DidReceiveBlob(const std::string& uuid, uint64_t size);
|
| void DidReceiveFlowControl(int64_t quota);
|
| void DidClose(bool was_clean, unsigned short code, const std::string& reason);
|
| void DidStartClosingHandshake();
|
|
|