OLD | NEW |
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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 params.quic_crypto_client_stream_factory, | 119 params.quic_crypto_client_stream_factory, |
120 params.quic_random ? params.quic_random : | 120 params.quic_random ? params.quic_random : |
121 QuicRandom::GetInstance(), | 121 QuicRandom::GetInstance(), |
122 params.quic_clock ? params. quic_clock : | 122 params.quic_clock ? params. quic_clock : |
123 new QuicClock(), | 123 new QuicClock(), |
124 params.quic_max_packet_length, | 124 params.quic_max_packet_length, |
125 params.quic_user_agent_id, | 125 params.quic_user_agent_id, |
126 params.quic_supported_versions, | 126 params.quic_supported_versions, |
127 params.enable_quic_port_selection, | 127 params.enable_quic_port_selection, |
128 params.enable_quic_pacing, | 128 params.enable_quic_pacing, |
129 params.enable_quic_time_based_loss_detection), | 129 params.enable_quic_time_based_loss_detection, |
| 130 params.quic_connection_options), |
130 spdy_session_pool_(params.host_resolver, | 131 spdy_session_pool_(params.host_resolver, |
131 params.ssl_config_service, | 132 params.ssl_config_service, |
132 params.http_server_properties, | 133 params.http_server_properties, |
133 params.force_spdy_single_domain, | 134 params.force_spdy_single_domain, |
134 params.enable_spdy_compression, | 135 params.enable_spdy_compression, |
135 params.enable_spdy_ping_based_connection_checking, | 136 params.enable_spdy_ping_based_connection_checking, |
136 params.spdy_default_protocol, | 137 params.spdy_default_protocol, |
137 params.spdy_stream_initial_recv_window_size, | 138 params.spdy_stream_initial_recv_window_size, |
138 params.spdy_initial_max_concurrent_streams, | 139 params.spdy_initial_max_concurrent_streams, |
139 params.spdy_max_concurrent_streams_limit, | 140 params.spdy_max_concurrent_streams_limit, |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
296 case WEBSOCKET_SOCKET_POOL: | 297 case WEBSOCKET_SOCKET_POOL: |
297 return websocket_socket_pool_manager_.get(); | 298 return websocket_socket_pool_manager_.get(); |
298 default: | 299 default: |
299 NOTREACHED(); | 300 NOTREACHED(); |
300 break; | 301 break; |
301 } | 302 } |
302 return NULL; | 303 return NULL; |
303 } | 304 } |
304 | 305 |
305 } // namespace net | 306 } // namespace net |
OLD | NEW |