Index: content/renderer/p2p/socket_dispatcher.cc |
diff --git a/content/renderer/p2p/socket_dispatcher.cc b/content/renderer/p2p/socket_dispatcher.cc |
index fd8aaf93ee25b154cf87f28121163c55c0fd57ce..8a7cc727646286668474fd965c582b4a2818a99a 100644 |
--- a/content/renderer/p2p/socket_dispatcher.cc |
+++ b/content/renderer/p2p/socket_dispatcher.cc |
@@ -139,10 +139,11 @@ void P2PSocketDispatcher::OnGetHostAddressResult( |
} |
void P2PSocketDispatcher::OnSocketCreated( |
- int socket_id, const net::IPEndPoint& address) { |
+ int socket_id, const net::IPEndPoint& address, |
+ const net::IPEndPoint& remote_address) { |
P2PSocketClientImpl* client = GetClient(socket_id); |
if (client) { |
- client->OnSocketCreated(address); |
+ client->OnSocketCreated(address, remote_address); |
} |
} |