Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(276)

Side by Side Diff: net/udp/udp_client_socket.h

Issue 2351513002: net: rename BoundNetLog to NetLogWithSource (Closed)
Patch Set: one more fix, content bound_net_log_ Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_SOCKET_UDP_CLIENT_SOCKET_H_ 5 #ifndef NET_SOCKET_UDP_CLIENT_SOCKET_H_
6 #define NET_SOCKET_UDP_CLIENT_SOCKET_H_ 6 #define NET_SOCKET_UDP_CLIENT_SOCKET_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "net/base/rand_callback.h" 11 #include "net/base/rand_callback.h"
12 #include "net/log/net_log.h" 12 #include "net/log/net_log.h"
13 #include "net/udp/datagram_client_socket.h" 13 #include "net/udp/datagram_client_socket.h"
14 #include "net/udp/udp_socket.h" 14 #include "net/udp/udp_socket.h"
15 15
16 namespace net { 16 namespace net {
17 17
18 class BoundNetLog; 18 class NetLogWithSource;
19 19
20 // A client socket that uses UDP as the transport layer. 20 // A client socket that uses UDP as the transport layer.
21 class NET_EXPORT_PRIVATE UDPClientSocket : public DatagramClientSocket { 21 class NET_EXPORT_PRIVATE UDPClientSocket : public DatagramClientSocket {
22 public: 22 public:
23 UDPClientSocket(DatagramSocket::BindType bind_type, 23 UDPClientSocket(DatagramSocket::BindType bind_type,
24 const RandIntCallback& rand_int_cb, 24 const RandIntCallback& rand_int_cb,
25 net::NetLog* net_log, 25 net::NetLog* net_log,
26 const net::NetLog::Source& source); 26 const net::NetLog::Source& source);
27 ~UDPClientSocket() override; 27 ~UDPClientSocket() override;
28 28
29 // DatagramClientSocket implementation. 29 // DatagramClientSocket implementation.
30 int Connect(const IPEndPoint& address) override; 30 int Connect(const IPEndPoint& address) override;
31 int ConnectUsingNetwork(NetworkChangeNotifier::NetworkHandle network, 31 int ConnectUsingNetwork(NetworkChangeNotifier::NetworkHandle network,
32 const IPEndPoint& address) override; 32 const IPEndPoint& address) override;
33 int ConnectUsingDefaultNetwork(const IPEndPoint& address) override; 33 int ConnectUsingDefaultNetwork(const IPEndPoint& address) override;
34 NetworkChangeNotifier::NetworkHandle GetBoundNetwork() const override; 34 NetworkChangeNotifier::NetworkHandle GetBoundNetwork() const override;
35 int Read(IOBuffer* buf, 35 int Read(IOBuffer* buf,
36 int buf_len, 36 int buf_len,
37 const CompletionCallback& callback) override; 37 const CompletionCallback& callback) override;
38 int Write(IOBuffer* buf, 38 int Write(IOBuffer* buf,
39 int buf_len, 39 int buf_len,
40 const CompletionCallback& callback) override; 40 const CompletionCallback& callback) override;
41 void Close() override; 41 void Close() override;
42 int GetPeerAddress(IPEndPoint* address) const override; 42 int GetPeerAddress(IPEndPoint* address) const override;
43 int GetLocalAddress(IPEndPoint* address) const override; 43 int GetLocalAddress(IPEndPoint* address) const override;
44 void UseNonBlockingIO() override; 44 void UseNonBlockingIO() override;
45 int SetReceiveBufferSize(int32_t size) override; 45 int SetReceiveBufferSize(int32_t size) override;
46 int SetSendBufferSize(int32_t size) override; 46 int SetSendBufferSize(int32_t size) override;
47 int SetDoNotFragment() override; 47 int SetDoNotFragment() override;
48 const BoundNetLog& NetLog() const override; 48 const NetLogWithSource& NetLog() const override;
49 49
50 // Switch to use non-blocking IO. Must be called right after construction and 50 // Switch to use non-blocking IO. Must be called right after construction and
51 // before other calls. 51 // before other calls.
52 private: 52 private:
53 UDPSocket socket_; 53 UDPSocket socket_;
54 NetworkChangeNotifier::NetworkHandle network_; 54 NetworkChangeNotifier::NetworkHandle network_;
55 DISALLOW_COPY_AND_ASSIGN(UDPClientSocket); 55 DISALLOW_COPY_AND_ASSIGN(UDPClientSocket);
56 }; 56 };
57 57
58 } // namespace net 58 } // namespace net
59 59
60 #endif // NET_SOCKET_UDP_CLIENT_SOCKET_H_ 60 #endif // NET_SOCKET_UDP_CLIENT_SOCKET_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698