diff options
Diffstat (limited to 'net/websockets/websocket.h')
-rw-r--r-- | net/websockets/websocket.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/net/websockets/websocket.h b/net/websockets/websocket.h index 006362b..427af56 100644 --- a/net/websockets/websocket.h +++ b/net/websockets/websocket.h @@ -174,8 +174,6 @@ class WebSocket : public base::RefCountedThreadSafe<WebSocket>, // Skips |len| bytes in |current_read_buf_|. void SkipReadBuffer(int len); - void StartClosingHandshake(); - void DoForceCloseConnection(); // Handles closed connection. void DoClose(); @@ -207,17 +205,6 @@ class WebSocket : public base::RefCountedThreadSafe<WebSocket>, // Front IOBuffer is being sent via |current_write_buf_|. PendingDataQueue pending_write_bufs_; - // True when the 0xFF frame with length 0x00 is received. - bool server_closing_handshake_; - // True when trying to send 0xFF and 0x00 bytes. - bool client_closing_handshake_; - // True when send 0xFF and 0x00 bytes. - bool closing_handshake_started_; - // Task to close the connection after closing handshake has started and - // |closing_handshake_timeout_|. - CancelableTask* force_close_task_; - int64 closing_handshake_timeout_; - DISALLOW_COPY_AND_ASSIGN(WebSocket); }; |