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

Unified Diff: net/udp/udp_client_socket.cc

Issue 2333923004: Extracting NetLog inner classes into their own classes. (Closed)
Patch Set: Some nit fixes and better, impl-agnostic naming of net_log_parameters_callback_typedef.h -> 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 side-by-side diff with in-line comments
Download patch
Index: net/udp/udp_client_socket.cc
diff --git a/net/udp/udp_client_socket.cc b/net/udp/udp_client_socket.cc
index 5cb95519e6f6cac0706a5b0ee50c05c522b92351..9a559ece9fa1aacaff77b61fe045fc8ee2524bc3 100644
--- a/net/udp/udp_client_socket.cc
+++ b/net/udp/udp_client_socket.cc
@@ -5,14 +5,13 @@
#include "net/udp/udp_client_socket.h"
#include "net/base/net_errors.h"
-#include "net/log/net_log.h"
namespace net {
UDPClientSocket::UDPClientSocket(DatagramSocket::BindType bind_type,
const RandIntCallback& rand_int_cb,
net::NetLog* net_log,
- const net::NetLog::Source& source)
+ const net::NetLogSource& source)
: socket_(bind_type, rand_int_cb, net_log, source),
network_(NetworkChangeNotifier::kInvalidNetworkHandle) {}

Powered by Google App Engine
This is Rietveld 408576698