diff options
Diffstat (limited to 'net/socket/tcp_client_socket.h')
-rw-r--r-- | net/socket/tcp_client_socket.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/socket/tcp_client_socket.h b/net/socket/tcp_client_socket.h index fabcbc1..970da2a 100644 --- a/net/socket/tcp_client_socket.h +++ b/net/socket/tcp_client_socket.h @@ -60,8 +60,8 @@ class NET_EXPORT TCPClientSocket : public StreamSocket { const CompletionCallback& callback) OVERRIDE; virtual int Write(IOBuffer* buf, int buf_len, const CompletionCallback& callback) OVERRIDE; - virtual bool SetReceiveBufferSize(int32 size) OVERRIDE; - virtual bool SetSendBufferSize(int32 size) OVERRIDE; + virtual int SetReceiveBufferSize(int32 size) OVERRIDE; + virtual int SetSendBufferSize(int32 size) OVERRIDE; virtual bool SetKeepAlive(bool enable, int delay); virtual bool SetNoDelay(bool no_delay); |