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

Unified Diff: jingle/notifier/base/chrome_async_socket.cc

Issue 10382003: Changes needed to roll libjingle r141 (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 7 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: jingle/notifier/base/chrome_async_socket.cc
===================================================================
--- jingle/notifier/base/chrome_async_socket.cc (revision 136430)
+++ jingle/notifier/base/chrome_async_socket.cc (working copy)
@@ -105,7 +105,8 @@
DCHECK_EQ(false, weak_factory_.HasWeakPtrs());
- net::HostPortPair dest_host_port_pair(address.IPAsString(), address.port());
+ net::HostPortPair dest_host_port_pair((address.hostname().empty() ?
akalin 2012/05/11 18:04:05 this should actually be: ... dest_host_port_pair(
Mallinath (Gone from Chromium) 2012/05/11 18:10:40 What should happen if hostname is empty? As talk_b
akalin 2012/05/11 18:13:02 Actually, this doesn't look like it was a bug befo
Mallinath (Gone from Chromium) 2012/05/11 20:52:45 Done.
+ address.ipaddr().ToString() : address.hostname()), address.port());
transport_socket_.reset(
client_socket_factory_->CreateTransportClientSocket(

Powered by Google App Engine
This is Rietveld 408576698