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

Unified Diff: net/quic/quic_stream_factory.cc

Issue 288313003: Land Recent QUIC Changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src
Patch Set: implemented rch's comments Created 6 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: net/quic/quic_stream_factory.cc
diff --git a/net/quic/quic_stream_factory.cc b/net/quic/quic_stream_factory.cc
index 310f93e964a96b967ac6f462a588bab4f13944bb..b94b19b78fb628c47e56d8cbd6dad212303295aa 100644
--- a/net/quic/quic_stream_factory.cc
+++ b/net/quic/quic_stream_factory.cc
@@ -736,7 +736,7 @@ int QuicStreamFactory::CreateSession(
QuicConnection* connection =
new QuicConnection(connection_id, addr, helper_.get(), writer.get(),
- false, supported_versions_, kInitialReceiveWindowSize);
+ false, supported_versions_);
writer->SetConnection(connection);
connection->options()->max_packet_length = max_packet_length_;
@@ -755,7 +755,7 @@ int QuicStreamFactory::CreateSession(
*session = new QuicClientSession(
connection, socket.Pass(), writer.Pass(), this,
quic_crypto_client_stream_factory_, server_info.Pass(), server_id,
- config, &crypto_config_, net_log.net_log());
+ config, kInitialReceiveWindowSize, &crypto_config_, net_log.net_log());
all_sessions_[*session] = server_id; // owning pointer
return OK;
}

Powered by Google App Engine
This is Rietveld 408576698