Index: remoting/protocol/fake_session.h |
diff --git a/remoting/protocol/fake_session.h b/remoting/protocol/fake_session.h |
index c7be7e40a2103a58f4e1d4b59fb15fd3265dffcf..a52e88c4bcf4aabaa75ec6c35834bff3aa26e12c 100644 |
--- a/remoting/protocol/fake_session.h |
+++ b/remoting/protocol/fake_session.h |
@@ -39,12 +39,12 @@ class FakeSocket : public net::StreamSocket { |
// net::Socket interface. |
virtual int Read(net::IOBuffer* buf, int buf_len, |
- net::OldCompletionCallback* callback); |
+ net::OldCompletionCallback* callback) OVERRIDE; |
virtual int Write(net::IOBuffer* buf, int buf_len, |
- net::OldCompletionCallback* callback); |
+ net::OldCompletionCallback* callback) OVERRIDE; |
- virtual bool SetReceiveBufferSize(int32 size); |
- virtual bool SetSendBufferSize(int32 size); |
+ virtual bool SetReceiveBufferSize(int32 size) OVERRIDE; |
+ virtual bool SetSendBufferSize(int32 size) OVERRIDE; |
// net::StreamSocket interface. |
virtual int Connect(net::OldCompletionCallback* callback) OVERRIDE; |
@@ -95,12 +95,12 @@ class FakeUdpSocket : public net::Socket { |
// net::Socket interface. |
virtual int Read(net::IOBuffer* buf, int buf_len, |
- net::OldCompletionCallback* callback); |
+ net::OldCompletionCallback* callback) OVERRIDE; |
virtual int Write(net::IOBuffer* buf, int buf_len, |
- net::OldCompletionCallback* callback); |
+ net::OldCompletionCallback* callback) OVERRIDE; |
- virtual bool SetReceiveBufferSize(int32 size); |
- virtual bool SetSendBufferSize(int32 size); |
+ virtual bool SetReceiveBufferSize(int32 size) OVERRIDE; |
+ virtual bool SetSendBufferSize(int32 size) OVERRIDE; |
private: |
bool read_pending_; |