diff options
Diffstat (limited to 'net/websockets/websocket_basic_stream.h')
-rw-r--r-- | net/websockets/websocket_basic_stream.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/net/websockets/websocket_basic_stream.h b/net/websockets/websocket_basic_stream.h index a071e61..601a236 100644 --- a/net/websockets/websocket_basic_stream.h +++ b/net/websockets/websocket_basic_stream.h @@ -19,8 +19,6 @@ namespace net { class ClientSocketHandle; class DrainableIOBuffer; class GrowableIOBuffer; -class HttpRequestHeaders; -class HttpResponseInfo; class IOBufferWithSize; struct WebSocketFrame; struct WebSocketFrameChunk; @@ -52,16 +50,6 @@ class NET_EXPORT_PRIVATE WebSocketBasicStream : public WebSocketStream { virtual std::string GetExtensions() const OVERRIDE; - // Writes WebSocket handshake request HTTP-style to the connection. Adds - // "Sec-WebSocket-Key" header; this should not be included in |headers|. - virtual int SendHandshakeRequest(const GURL& url, - const HttpRequestHeaders& headers, - HttpResponseInfo* response_info, - const CompletionCallback& callback) OVERRIDE; - - virtual int ReadHandshakeResponse( - const CompletionCallback& callback) OVERRIDE; - //////////////////////////////////////////////////////////////////////////// // Methods for testing only. |