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

Side by Side Diff: net/http/http_network_session.cc

Issue 2019933002: Enable AltSvc pooling by default. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2743
Patch Set: Created 4 years, 6 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 | « ios/chrome/browser/ios_chrome_io_thread.mm ('k') | net/spdy/spdy_test_util_common.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/atomic_sequence_num.h" 9 #include "base/atomic_sequence_num.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 testing_fixed_https_port(0), 90 testing_fixed_https_port(0),
91 enable_tcp_fast_open_for_ssl(false), 91 enable_tcp_fast_open_for_ssl(false),
92 enable_spdy_ping_based_connection_checking(true), 92 enable_spdy_ping_based_connection_checking(true),
93 spdy_default_protocol(kProtoUnknown), 93 spdy_default_protocol(kProtoUnknown),
94 enable_spdy31(false), 94 enable_spdy31(false),
95 enable_http2(true), 95 enable_http2(true),
96 spdy_session_max_recv_window_size(kSpdySessionMaxRecvWindowSize), 96 spdy_session_max_recv_window_size(kSpdySessionMaxRecvWindowSize),
97 spdy_stream_max_recv_window_size(kSpdyStreamMaxRecvWindowSize), 97 spdy_stream_max_recv_window_size(kSpdyStreamMaxRecvWindowSize),
98 time_func(&base::TimeTicks::Now), 98 time_func(&base::TimeTicks::Now),
99 parse_alternative_services(true), 99 parse_alternative_services(true),
100 enable_alternative_service_with_different_host(false), 100 enable_alternative_service_with_different_host(true),
101 enable_npn(false), 101 enable_npn(false),
102 enable_priority_dependencies(true), 102 enable_priority_dependencies(true),
103 enable_quic(false), 103 enable_quic(false),
104 disable_quic_on_timeout_with_open_streams(false), 104 disable_quic_on_timeout_with_open_streams(false),
105 enable_quic_port_selection(true), 105 enable_quic_port_selection(true),
106 quic_always_require_handshake_confirmation(false), 106 quic_always_require_handshake_confirmation(false),
107 quic_disable_connection_pooling(false), 107 quic_disable_connection_pooling(false),
108 quic_load_server_info_timeout_srtt_multiplier(0.25f), 108 quic_load_server_info_timeout_srtt_multiplier(0.25f),
109 quic_enable_connection_racing(false), 109 quic_enable_connection_racing(false),
110 quic_enable_non_blocking_io(false), 110 quic_enable_non_blocking_io(false),
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
404 case WEBSOCKET_SOCKET_POOL: 404 case WEBSOCKET_SOCKET_POOL:
405 return websocket_socket_pool_manager_.get(); 405 return websocket_socket_pool_manager_.get();
406 default: 406 default:
407 NOTREACHED(); 407 NOTREACHED();
408 break; 408 break;
409 } 409 }
410 return NULL; 410 return NULL;
411 } 411 }
412 412
413 } // namespace net 413 } // namespace net
OLDNEW
« no previous file with comments | « ios/chrome/browser/ios_chrome_io_thread.mm ('k') | net/spdy/spdy_test_util_common.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698