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/atomic_sequence_num.h" | 9 #include "base/atomic_sequence_num.h" |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 enable_spdy_compression(true), | 92 enable_spdy_compression(true), |
93 enable_spdy_ping_based_connection_checking(true), | 93 enable_spdy_ping_based_connection_checking(true), |
94 spdy_default_protocol(kProtoUnknown), | 94 spdy_default_protocol(kProtoUnknown), |
95 spdy_session_max_recv_window_size(kSpdySessionMaxRecvWindowSize), | 95 spdy_session_max_recv_window_size(kSpdySessionMaxRecvWindowSize), |
96 spdy_stream_max_recv_window_size(kSpdyStreamMaxRecvWindowSize), | 96 spdy_stream_max_recv_window_size(kSpdyStreamMaxRecvWindowSize), |
97 spdy_initial_max_concurrent_streams(0), | 97 spdy_initial_max_concurrent_streams(0), |
98 time_func(&base::TimeTicks::Now), | 98 time_func(&base::TimeTicks::Now), |
99 use_alternative_services(false), | 99 use_alternative_services(false), |
100 alternative_service_probability_threshold(1), | 100 alternative_service_probability_threshold(1), |
101 enable_npn(true), | 101 enable_npn(true), |
| 102 enable_brotli(false), |
102 enable_quic(false), | 103 enable_quic(false), |
103 enable_quic_for_proxies(false), | 104 enable_quic_for_proxies(false), |
104 enable_quic_port_selection(true), | 105 enable_quic_port_selection(true), |
105 quic_always_require_handshake_confirmation(false), | 106 quic_always_require_handshake_confirmation(false), |
106 quic_disable_connection_pooling(false), | 107 quic_disable_connection_pooling(false), |
107 quic_load_server_info_timeout_srtt_multiplier(0.25f), | 108 quic_load_server_info_timeout_srtt_multiplier(0.25f), |
108 quic_enable_connection_racing(false), | 109 quic_enable_connection_racing(false), |
109 quic_enable_non_blocking_io(false), | 110 quic_enable_non_blocking_io(false), |
110 quic_disable_disk_cache(false), | 111 quic_disable_disk_cache(false), |
111 quic_prefer_aes(false), | 112 quic_prefer_aes(false), |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
364 case WEBSOCKET_SOCKET_POOL: | 365 case WEBSOCKET_SOCKET_POOL: |
365 return websocket_socket_pool_manager_.get(); | 366 return websocket_socket_pool_manager_.get(); |
366 default: | 367 default: |
367 NOTREACHED(); | 368 NOTREACHED(); |
368 break; | 369 break; |
369 } | 370 } |
370 return NULL; | 371 return NULL; |
371 } | 372 } |
372 | 373 |
373 } // namespace net | 374 } // namespace net |
OLD | NEW |