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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « no previous file | net/quic/quic_network_transaction_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/http/http_network_session.h" 5 #include "net/http/http_network_session.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/debug/stack_trace.h" 10 #include "base/debug/stack_trace.h"
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 params.enable_quic_port_selection, 151 params.enable_quic_port_selection,
152 params.quic_always_require_handshake_confirmation, 152 params.quic_always_require_handshake_confirmation,
153 params.quic_disable_connection_pooling, 153 params.quic_disable_connection_pooling,
154 params.quic_load_server_info_timeout_srtt_multiplier, 154 params.quic_load_server_info_timeout_srtt_multiplier,
155 params.quic_enable_connection_racing, 155 params.quic_enable_connection_racing,
156 params.quic_enable_non_blocking_io, 156 params.quic_enable_non_blocking_io,
157 params.quic_disable_disk_cache, 157 params.quic_disable_disk_cache,
158 params.quic_prefer_aes, 158 params.quic_prefer_aes,
159 params.quic_max_number_of_lossy_connections, 159 params.quic_max_number_of_lossy_connections,
160 params.quic_packet_loss_threshold, 160 params.quic_packet_loss_threshold,
161 params.quic_socket_receive_buffer_size,
162 params.quic_max_recent_disabled_reasons, 161 params.quic_max_recent_disabled_reasons,
163 params.quic_threshold_public_resets_post_handshake, 162 params.quic_threshold_public_resets_post_handshake,
164 params.quic_threshold_timeouts_streams_open, 163 params.quic_threshold_timeouts_streams_open,
164 params.quic_socket_receive_buffer_size,
165 params.quic_connection_options), 165 params.quic_connection_options),
166 spdy_session_pool_(params.host_resolver, 166 spdy_session_pool_(params.host_resolver,
167 params.ssl_config_service, 167 params.ssl_config_service,
168 params.http_server_properties, 168 params.http_server_properties,
169 params.transport_security_state, 169 params.transport_security_state,
170 params.enable_spdy_compression, 170 params.enable_spdy_compression,
171 params.enable_spdy_ping_based_connection_checking, 171 params.enable_spdy_ping_based_connection_checking,
172 params.spdy_default_protocol, 172 params.spdy_default_protocol,
173 params.spdy_session_max_recv_window_size, 173 params.spdy_session_max_recv_window_size,
174 params.spdy_stream_max_recv_window_size, 174 params.spdy_stream_max_recv_window_size,
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 case WEBSOCKET_SOCKET_POOL: 335 case WEBSOCKET_SOCKET_POOL:
336 return websocket_socket_pool_manager_.get(); 336 return websocket_socket_pool_manager_.get();
337 default: 337 default:
338 NOTREACHED(); 338 NOTREACHED();
339 break; 339 break;
340 } 340 }
341 return NULL; 341 return NULL;
342 } 342 }
343 343
344 } // namespace net 344 } // namespace net
OLDNEW
« 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