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..3607c42b8e74e7de64fb356bd002480d3ad8b1ed 100644 |
--- a/content/browser/renderer_host/p2p/socket_host_udp_unittest.cc |
+++ b/content/browser/renderer_host/p2p/socket_host_udp_unittest.cc |
@@ -1,4 +1,4 @@ |
-// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
+// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
@@ -7,6 +7,7 @@ |
#include <deque> |
#include <vector> |
+#include "base/logging.h" |
#include "base/sys_byteorder.h" |
#include "content/browser/renderer_host/p2p/socket_host_test_utils.h" |
#include "net/base/io_buffer.h" |
@@ -107,6 +108,14 @@ class FakeDatagramServerSocket : public net::DatagramServerSocket { |
return net_log_; |
} |
+ virtual void AllowAddressReuse() OVERRIDE { |
+ NOTIMPLEMENTED(); |
+ } |
+ |
+ virtual void AllowBroadcast() OVERRIDE { |
+ NOTIMPLEMENTED(); |
+ } |
+ |
private: |
net::IPEndPoint address_; |
std::deque<UDPPacket>* sent_packets_; |