Index: content/renderer/p2p/socket_client_delegate.h |
diff --git a/content/renderer/p2p/socket_client_delegate.h b/content/renderer/p2p/socket_client_delegate.h |
index c3794636a33bb7daccfddab8db037a6ead37ffda..ad8701a6c13485782cacc0b64e4987b2a5e20587 100644 |
--- a/content/renderer/p2p/socket_client_delegate.h |
+++ b/content/renderer/p2p/socket_client_delegate.h |
@@ -22,7 +22,8 @@ class P2PSocketClientDelegate { |
// Called after the socket has been opened with the local endpoint address |
// as argument. Please note that in the precence of multiple interfaces, |
// you should not rely on the local endpoint address if possible. |
- virtual void OnOpen(const net::IPEndPoint& address) = 0; |
+ virtual void OnOpen(const net::IPEndPoint& address, |
Sergey Ulanov
2014/07/03 03:31:06
rename this to local_address?
Mallinath (Gone from Chromium)
2014/07/07 17:56:44
Done.
|
+ const net::IPEndPoint& remote_address) = 0; |
// For a socket that is listening on incoming TCP connectsion, this |
// function is called when a new client connects. |