| Index: jingle/glue/channel_socket_adapter.h
|
| diff --git a/jingle/glue/channel_socket_adapter.h b/jingle/glue/channel_socket_adapter.h
|
| index 4a3eafb6a8f752fdb7b56b3aa108283dc480cbc3..43a63f0052b8623a723c13a6dac60041a4f8436c 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,
|
|
|