| Index: net/udp/udp_client_socket.h
|
| diff --git a/net/udp/udp_client_socket.h b/net/udp/udp_client_socket.h
|
| index c5fc8c03b6b9dbb577748fb0e48d0b28272f4dd5..d689640716022797f1249c1909d2b335dc63a9d4 100644
|
| --- a/net/udp/udp_client_socket.h
|
| +++ b/net/udp/udp_client_socket.h
|
| @@ -24,17 +24,17 @@ class NET_EXPORT_PRIVATE UDPClientSocket : public DatagramClientSocket {
|
| virtual ~UDPClientSocket();
|
|
|
| // DatagramClientSocket implementation.
|
| - virtual int Connect(const IPEndPoint& address) OVERRIDE;
|
| + virtual int Connect(const IPEndPoint& address) override;
|
| virtual int Read(IOBuffer* buf, int buf_len,
|
| - const CompletionCallback& callback) OVERRIDE;
|
| + const CompletionCallback& callback) override;
|
| virtual int Write(IOBuffer* buf, int buf_len,
|
| - const CompletionCallback& callback) OVERRIDE;
|
| - virtual void Close() OVERRIDE;
|
| - virtual int GetPeerAddress(IPEndPoint* address) const OVERRIDE;
|
| - virtual int GetLocalAddress(IPEndPoint* address) const OVERRIDE;
|
| - virtual int SetReceiveBufferSize(int32 size) OVERRIDE;
|
| - virtual int SetSendBufferSize(int32 size) OVERRIDE;
|
| - virtual const BoundNetLog& NetLog() const OVERRIDE;
|
| + const CompletionCallback& callback) override;
|
| + virtual void Close() override;
|
| + virtual int GetPeerAddress(IPEndPoint* address) const override;
|
| + virtual int GetLocalAddress(IPEndPoint* address) const override;
|
| + virtual int SetReceiveBufferSize(int32 size) override;
|
| + virtual int SetSendBufferSize(int32 size) override;
|
| + virtual const BoundNetLog& NetLog() const override;
|
|
|
| private:
|
| UDPSocket socket_;
|
|
|