Index: remoting/jingle_glue/ssl_socket_adapter.h |
diff --git a/remoting/jingle_glue/ssl_socket_adapter.h b/remoting/jingle_glue/ssl_socket_adapter.h |
index f929bf83e75931b5f51bee8a572a5d209a079ef4..3638ae14ab874718950fd0404391cf28dd2ad08a 100644 |
--- a/remoting/jingle_glue/ssl_socket_adapter.h |
+++ b/remoting/jingle_glue/ssl_socket_adapter.h |
@@ -62,6 +62,8 @@ class TransportSocket : public net::StreamSocket, public sigslot::has_slots<> { |
const net::CompletionCallback& callback) OVERRIDE; |
virtual int Write(net::IOBuffer* buf, int buf_len, |
net::OldCompletionCallback* callback) OVERRIDE; |
+ virtual int Write(net::IOBuffer* buf, int buf_len, |
+ const net::CompletionCallback& callback) OVERRIDE; |
virtual bool SetReceiveBufferSize(int32 size) OVERRIDE; |
virtual bool SetSendBufferSize(int32 size) OVERRIDE; |
@@ -73,7 +75,8 @@ class TransportSocket : public net::StreamSocket, public sigslot::has_slots<> { |
net::OldCompletionCallback* old_read_callback_; |
net::CompletionCallback read_callback_; |
- net::OldCompletionCallback* write_callback_; |
+ net::OldCompletionCallback* old_write_callback_; |
+ net::CompletionCallback write_callback_; |
scoped_refptr<net::IOBuffer> read_buffer_; |
int read_buffer_len_; |