| Index: content/child/websocket_bridge.h
|
| diff --git a/content/child/websocket_bridge.h b/content/child/websocket_bridge.h
|
| index 4834c401f23d8cb83fd5a2872615f5ef1af6c0c1..9f9264742d9fe21ac77b4eafb805bfad691df5f2 100644
|
| --- a/content/child/websocket_bridge.h
|
| +++ b/content/child/websocket_bridge.h
|
| @@ -47,11 +47,12 @@ class WebSocketBridge : public WebKit::WebSocketHandle {
|
| void DidConnect(bool fail,
|
| const std::string& selected_protocol,
|
| const std::string& extensions);
|
| + void DidFail(const std::string& message);
|
| void DidReceiveData(bool fin,
|
| WebSocketMessageType type,
|
| const std::vector<char>& data);
|
| void DidReceiveFlowControl(int64_t quota);
|
| - void DidClose(unsigned short code, const std::string& reason);
|
| + void DidClose(bool was_clean, unsigned short code, const std::string& reason);
|
|
|
| int channel_id_;
|
| WebKit::WebSocketHandleClient* client_;
|
|
|