| 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..a523da1971ea3c7eca0134592fd1a63e5464c100 100644
|
| --- a/net/udp/udp_client_socket.h
|
| +++ b/net/udp/udp_client_socket.h
|
| @@ -25,9 +25,11 @@ class NET_EXPORT_PRIVATE UDPClientSocket : public DatagramClientSocket {
|
|
|
| // DatagramClientSocket implementation.
|
| virtual int Connect(const IPEndPoint& address) OVERRIDE;
|
| - virtual int Read(IOBuffer* buf, int buf_len,
|
| + virtual int Read(IOBuffer* buf,
|
| + int buf_len,
|
| const CompletionCallback& callback) OVERRIDE;
|
| - virtual int Write(IOBuffer* buf, int buf_len,
|
| + virtual int Write(IOBuffer* buf,
|
| + int buf_len,
|
| const CompletionCallback& callback) OVERRIDE;
|
| virtual void Close() OVERRIDE;
|
| virtual int GetPeerAddress(IPEndPoint* address) const OVERRIDE;
|
|
|