diff options
Diffstat (limited to 'content/browser')
-rw-r--r-- | content/browser/renderer_host/p2p/socket_host_udp_unittest.cc | 5 |
1 files changed, 5 insertions, 0 deletions
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 cd517b8..e40d288 100644 --- a/content/browser/renderer_host/p2p/socket_host_udp_unittest.cc +++ b/content/browser/renderer_host/p2p/socket_host_udp_unittest.cc @@ -95,10 +95,15 @@ class FakeDatagramServerSocket : public net::DatagramServerSocket { } } + virtual const net::BoundNetLog& NetLog() const { + return net_log_; + } + private: net::IPEndPoint address_; std::deque<UDPPacket>* sent_packets_; std::deque<UDPPacket> incoming_packets_; + net::BoundNetLog net_log_; scoped_refptr<net::IOBuffer> recv_buffer_; net::IPEndPoint* recv_address_; |