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

Unified Diff: net/quic/quic_stream_factory.cc

Issue 15074007: Land Recent QUIC changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix for windows Created 7 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
« no previous file with comments | « net/quic/quic_spdy_decompressor_test.cc ('k') | net/quic/quic_utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_stream_factory.cc
diff --git a/net/quic/quic_stream_factory.cc b/net/quic/quic_stream_factory.cc
index 5ac6bf5825497a14cde3bb18018f1a984fb9e457..007fc881dacdc4aa176c2d02a166223ebdf349a8 100644
--- a/net/quic/quic_stream_factory.cc
+++ b/net/quic/quic_stream_factory.cc
@@ -372,7 +372,6 @@ QuicClientSession* QuicStreamFactory::CreateSession(
DatagramSocket::DEFAULT_BIND, base::Bind(&base::RandInt),
net_log.net_log(), net_log.source());
socket->Connect(addr);
- socket->GetLocalAddress(&addr);
QuicConnectionHelper* helper = new QuicConnectionHelper(
MessageLoop::current()->message_loop_proxy(),
@@ -387,7 +386,7 @@ QuicClientSession* QuicStreamFactory::CreateSession(
QuicClientSession* session =
new QuicClientSession(connection, socket, this,
quic_crypto_client_stream_factory_,
- host_port_proxy_pair.first.host(),
+ host_port_proxy_pair.first.host(), QuicConfig(),
crypto_config, net_log.net_log());
all_sessions_.insert(session); // owning pointer
return session;
« no previous file with comments | « net/quic/quic_spdy_decompressor_test.cc ('k') | net/quic/quic_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698