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

Unified Diff: content/browser/renderer_host/p2p/socket_host_udp_unittest.cc

Issue 2351513002: net: rename BoundNetLog to NetLogWithSource (Closed)
Patch Set: one more fix, content bound_net_log_ Created 4 years, 3 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: content/browser/renderer_host/p2p/socket_host_udp_unittest.cc
diff --git a/content/browser/renderer_host/p2p/socket_host_udp_unittest.cc b/content/browser/renderer_host/p2p/socket_host_udp_unittest.cc
index 7bdcb9294e27380a95e03570b82187425ac99e95..502cbe1f7fa6be6516ee0c2c09649d28a4122e3e 100644
--- a/content/browser/renderer_host/p2p/socket_host_udp_unittest.cc
+++ b/content/browser/renderer_host/p2p/socket_host_udp_unittest.cc
@@ -142,7 +142,7 @@ class FakeDatagramServerSocket : public net::DatagramServerSocket {
}
}
- const net::BoundNetLog& NetLog() const override { return net_log_; }
+ const net::NetLogWithSource& NetLog() const override { return net_log_; }
void AllowAddressReuse() override { NOTIMPLEMENTED(); }
@@ -184,7 +184,7 @@ class FakeDatagramServerSocket : public net::DatagramServerSocket {
net::IPEndPoint address_;
std::deque<UDPPacket>* sent_packets_;
std::deque<UDPPacket> incoming_packets_;
- net::BoundNetLog net_log_;
+ net::NetLogWithSource net_log_;
scoped_refptr<net::IOBuffer> recv_buffer_;
net::IPEndPoint* recv_address_;

Powered by Google App Engine
This is Rietveld 408576698