Chromium Code Reviews| 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 b294c786ecd8720d9291c6eaf472d6b547d80f46..e06c25762cc48ea2a1b8acf6c355dee87532d3f4 100644 |
| --- a/content/browser/renderer_host/p2p/socket_host_udp_unittest.cc |
| +++ b/content/browser/renderer_host/p2p/socket_host_udp_unittest.cc |
| @@ -107,6 +107,12 @@ class FakeDatagramServerSocket : public net::DatagramServerSocket { |
| return net_log_; |
| } |
| + virtual void AllowAddressReuse() OVERRIDE { |
| + } |
|
Sergey Ulanov
2012/07/12 18:15:37
NOTIMPLEMENTED()
ygorshenin1
2012/07/16 10:29:44
Done.
|
| + |
| + virtual void AllowBroadcast() OVERRIDE { |
| + } |
|
Sergey Ulanov
2012/07/12 18:15:37
NOTIMPLEMENTED()
ygorshenin1
2012/07/16 10:29:44
Done.
|
| + |
| private: |
| net::IPEndPoint address_; |
| std::deque<UDPPacket>* sent_packets_; |