| 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |