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 | |
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')
-rw-r--r-- | jingle/glue/channel_socket_adapter.h | 9 | ||||
-rw-r--r-- | jingle/glue/pseudotcp_adapter.cc | 1 | ||||
-rw-r--r-- | jingle/glue/pseudotcp_adapter_unittest.cc | 1 | ||||
-rw-r--r-- | jingle/glue/thread_wrapper.h | 1 | ||||
-rw-r--r-- | jingle/glue/thread_wrapper_unittest.cc | 1 |
5 files changed, 9 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, diff --git a/jingle/glue/pseudotcp_adapter.cc b/jingle/glue/pseudotcp_adapter.cc index d800d99..9f91834 100644 --- a/jingle/glue/pseudotcp_adapter.cc +++ b/jingle/glue/pseudotcp_adapter.cc @@ -4,6 +4,7 @@ #include "jingle/glue/pseudotcp_adapter.h" +#include "base/compiler_specific.h" #include "base/logging.h" #include "base/time.h" #include "net/base/address_list.h" diff --git a/jingle/glue/pseudotcp_adapter_unittest.cc b/jingle/glue/pseudotcp_adapter_unittest.cc index 65d7a56..959348e 100644 --- a/jingle/glue/pseudotcp_adapter_unittest.cc +++ b/jingle/glue/pseudotcp_adapter_unittest.cc @@ -8,6 +8,7 @@ #include "base/bind.h" #include "base/bind_helpers.h" +#include "base/compiler_specific.h" #include "jingle/glue/thread_wrapper.h" #include "net/base/io_buffer.h" #include "net/base/net_errors.h" diff --git a/jingle/glue/thread_wrapper.h b/jingle/glue/thread_wrapper.h index 4707e21..1ddf506 100644 --- a/jingle/glue/thread_wrapper.h +++ b/jingle/glue/thread_wrapper.h @@ -8,6 +8,7 @@ #include <list> #include <map> +#include "base/compiler_specific.h" #include "base/message_loop.h" #include "base/synchronization/lock.h" #include "base/synchronization/waitable_event.h" diff --git a/jingle/glue/thread_wrapper_unittest.cc b/jingle/glue/thread_wrapper_unittest.cc index 116b36b..007bc9f 100644 --- a/jingle/glue/thread_wrapper_unittest.cc +++ b/jingle/glue/thread_wrapper_unittest.cc @@ -3,6 +3,7 @@ // found in the LICENSE file. #include "base/bind.h" +#include "base/compiler_specific.h" #include "base/message_loop.h" #include "base/threading/thread.h" #include "jingle/glue/thread_wrapper.h" |