| 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 5d67a24fc3327563c21773cc973ae8ba7084e7b0..171fcef18338f3cfc31dcace7acb453951ba71b7 100644 | 
| --- a/content/browser/renderer_host/p2p/socket_host_udp_unittest.cc | 
| +++ b/content/browser/renderer_host/p2p/socket_host_udp_unittest.cc | 
| @@ -115,9 +115,25 @@ class FakeDatagramServerSocket : public net::DatagramServerSocket { | 
|  | 
| const net::BoundNetLog& NetLog() const override { return net_log_; } | 
|  | 
| -  void AllowAddressReuse() override { NOTIMPLEMENTED(); } | 
| +  int AllowAddressReuse() override { | 
| +    NOTIMPLEMENTED(); | 
| +    return net::ERR_NOT_IMPLEMENTED; | 
| +  } | 
| + | 
| +  int DisallowAddressReuse() override { | 
| +    NOTIMPLEMENTED(); | 
| +    return net::ERR_NOT_IMPLEMENTED; | 
| +  } | 
|  | 
| -  void AllowBroadcast() override { NOTIMPLEMENTED(); } | 
| +  int AllowBroadcast() override { | 
| +    NOTIMPLEMENTED(); | 
| +    return net::ERR_NOT_IMPLEMENTED; | 
| +  } | 
| + | 
| +  int DisallowBroadcast() override { | 
| +    NOTIMPLEMENTED(); | 
| +    return net::ERR_NOT_IMPLEMENTED; | 
| +  } | 
|  | 
| int JoinGroup(const net::IPAddressNumber& group_address) const override { | 
| NOTIMPLEMENTED(); | 
|  |