Chromium Code Reviews

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

Issue 723343002: Update from https://crrev.com/304121 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
« no previous file with comments | « net/http/http_network_session.h ('k') | net/http/http_network_transaction.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 71 matching lines...)
82 enable_spdy_ping_based_connection_checking(true), 82 enable_spdy_ping_based_connection_checking(true),
83 spdy_default_protocol(kProtoUnknown), 83 spdy_default_protocol(kProtoUnknown),
84 spdy_stream_initial_recv_window_size(0), 84 spdy_stream_initial_recv_window_size(0),
85 spdy_initial_max_concurrent_streams(0), 85 spdy_initial_max_concurrent_streams(0),
86 spdy_max_concurrent_streams_limit(0), 86 spdy_max_concurrent_streams_limit(0),
87 time_func(&base::TimeTicks::Now), 87 time_func(&base::TimeTicks::Now),
88 force_spdy_over_ssl(true), 88 force_spdy_over_ssl(true),
89 force_spdy_always(false), 89 force_spdy_always(false),
90 use_alternate_protocols(false), 90 use_alternate_protocols(false),
91 alternate_protocol_probability_threshold(1), 91 alternate_protocol_probability_threshold(1),
92 enable_websocket_over_spdy(false),
93 enable_quic(false), 92 enable_quic(false),
94 enable_quic_port_selection(true), 93 enable_quic_port_selection(true),
95 quic_always_require_handshake_confirmation(false), 94 quic_always_require_handshake_confirmation(false),
96 quic_disable_connection_pooling(false), 95 quic_disable_connection_pooling(false),
97 quic_load_server_info_timeout_ms(0), 96 quic_load_server_info_timeout_ms(0),
98 quic_clock(NULL), 97 quic_clock(NULL),
99 quic_random(NULL), 98 quic_random(NULL),
100 quic_max_packet_length(kDefaultMaxPacketSize), 99 quic_max_packet_length(kDefaultMaxPacketSize),
101 enable_user_alternate_protocol_ports(false), 100 enable_user_alternate_protocol_ports(false),
102 quic_crypto_client_stream_factory(NULL), 101 quic_crypto_client_stream_factory(NULL),
(...skipping 211 matching lines...)
314 case WEBSOCKET_SOCKET_POOL: 313 case WEBSOCKET_SOCKET_POOL:
315 return websocket_socket_pool_manager_.get(); 314 return websocket_socket_pool_manager_.get();
316 default: 315 default:
317 NOTREACHED(); 316 NOTREACHED();
318 break; 317 break;
319 } 318 }
320 return NULL; 319 return NULL;
321 } 320 }
322 321
323 } // namespace net 322 } // namespace net
OLDNEW
« no previous file with comments | « net/http/http_network_session.h ('k') | net/http/http_network_transaction.cc » ('j') | no next file with comments »

Powered by Google App Engine