diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-19 00:06:02 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-19 00:06:02 +0000 |
commit | 6a6fe806ed0d0b7bf8104815398c3b1f3d766410 (patch) | |
tree | 27aab3442983de794d952800f3005d70877a715c /remoting/protocol/fake_session.h | |
parent | 0f9c4556b26ffb55cea457dfeeec9be2924612d1 (diff) | |
download | chromium_src-6a6fe806ed0d0b7bf8104815398c3b1f3d766410.zip chromium_src-6a6fe806ed0d0b7bf8104815398c3b1f3d766410.tar.gz chromium_src-6a6fe806ed0d0b7bf8104815398c3b1f3d766410.tar.bz2 |
Add OVERRIDE to remoting/.
BUG=104314
TEST=no change
Review URL: http://codereview.chromium.org/8601011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110791 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/protocol/fake_session.h')
-rw-r--r-- | remoting/protocol/fake_session.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/remoting/protocol/fake_session.h b/remoting/protocol/fake_session.h index c7be7e4..a52e88c 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_; |