Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(535)

Unified Diff: content/renderer/p2p/socket_client_delegate.h

Issue 365903007: Handle unresolved remote hostname for TCP sockets. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698