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

Unified Diff: media/cast/net/udp_transport.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: media/cast/net/udp_transport.cc
diff --git a/media/cast/net/udp_transport.cc b/media/cast/net/udp_transport.cc
index 1324058b3386578f8cd468f3c0812b32b2c57b2a..68cfff7783b41855073cae1068f48e6b28bbc8b9 100644
--- a/media/cast/net/udp_transport.cc
+++ b/media/cast/net/udp_transport.cc
@@ -16,6 +16,7 @@
#include "net/base/io_buffer.h"
#include "net/base/net_errors.h"
#include "net/base/rand_callback.h"
+#include "net/log/net_log_source.h"
namespace media {
namespace cast {
@@ -70,7 +71,7 @@ UdpTransport::UdpTransport(
udp_socket_(new net::UDPSocket(net::DatagramSocket::DEFAULT_BIND,
net::RandIntCallback(),
net_log,
- net::NetLog::Source())),
+ net::NetLogSource())),
send_pending_(false),
receive_pending_(false),
client_connected_(false),

Powered by Google App Engine
This is Rietveld 408576698