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

Unified Diff: net/http/http_network_session.cc

Issue 1235163003: Fix order of arguments in QuicStreamFactory constructor. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add test Created 5 years, 5 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 | « no previous file | net/quic/quic_network_transaction_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_network_session.cc
diff --git a/net/http/http_network_session.cc b/net/http/http_network_session.cc
index 80cd87556706edaa7b177dba041ace791f6b67e0..950a0281bdaa322e409efc07bd0dc1958935e159 100644
--- a/net/http/http_network_session.cc
+++ b/net/http/http_network_session.cc
@@ -158,10 +158,10 @@ HttpNetworkSession::HttpNetworkSession(const Params& params)
params.quic_prefer_aes,
params.quic_max_number_of_lossy_connections,
params.quic_packet_loss_threshold,
- params.quic_socket_receive_buffer_size,
params.quic_max_recent_disabled_reasons,
params.quic_threshold_public_resets_post_handshake,
params.quic_threshold_timeouts_streams_open,
+ params.quic_socket_receive_buffer_size,
params.quic_connection_options),
spdy_session_pool_(params.host_resolver,
params.ssl_config_service,
« no previous file with comments | « no previous file | net/quic/quic_network_transaction_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698