diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-17 20:08:56 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-17 20:08:56 +0000 |
commit | 3f197737c080a3760e07e20af056441d3f00fda1 (patch) | |
tree | 2b2362f47ac12248788545bd63e4ebff19158b9f /jingle/glue/channel_socket_adapter.h | |
parent | a11dfdd33c600e6eba2db360abe84678574e1837 (diff) | |
download | chromium_src-3f197737c080a3760e07e20af056441d3f00fda1.zip chromium_src-3f197737c080a3760e07e20af056441d3f00fda1.tar.gz chromium_src-3f197737c080a3760e07e20af056441d3f00fda1.tar.bz2 |
Add OVERRIDE to jingle/.
BUG=104314
TEST=no change
Review URL: http://codereview.chromium.org/8589003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110546 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'jingle/glue/channel_socket_adapter.h')
-rw-r--r-- | jingle/glue/channel_socket_adapter.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/jingle/glue/channel_socket_adapter.h b/jingle/glue/channel_socket_adapter.h index 4a3eafb..43a63f0 100644 --- a/jingle/glue/channel_socket_adapter.h +++ b/jingle/glue/channel_socket_adapter.h @@ -5,6 +5,7 @@ #ifndef JINGLE_GLUE_CHANNEL_SOCKET_ADAPTER_H_ #define JINGLE_GLUE_CHANNEL_SOCKET_ADAPTER_H_ +#include "base/compiler_specific.h" #include "net/socket/socket.h" #include "third_party/libjingle/source/talk/base/socketaddress.h" #include "third_party/libjingle/source/talk/base/sigslot.h" @@ -34,12 +35,12 @@ class TransportChannelSocketAdapter : public net::Socket, // 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: void OnNewPacket(cricket::TransportChannel* channel, |