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

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

Issue 885443002: Roll Chrome into Mojo. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Rebase to ToT mojo Created 5 years, 10 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 | « net/http/http_chunked_decoder_unittest.cc ('k') | net/http/http_network_session.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 #ifndef NET_HTTP_HTTP_NETWORK_SESSION_H_ 5 #ifndef NET_HTTP_HTTP_NETWORK_SESSION_H_
6 #define NET_HTTP_HTTP_NETWORK_SESSION_H_ 6 #define NET_HTTP_HTTP_NETWORK_SESSION_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 // Noe: Using this in the case of NPN for HTTP only results in the browser 110 // Noe: Using this in the case of NPN for HTTP only results in the browser
111 // trying SSL and then falling back to http. 111 // trying SSL and then falling back to http.
112 bool use_alternate_protocols; 112 bool use_alternate_protocols;
113 double alternate_protocol_probability_threshold; 113 double alternate_protocol_probability_threshold;
114 114
115 bool enable_quic; 115 bool enable_quic;
116 bool enable_quic_port_selection; 116 bool enable_quic_port_selection;
117 bool quic_always_require_handshake_confirmation; 117 bool quic_always_require_handshake_confirmation;
118 bool quic_disable_connection_pooling; 118 bool quic_disable_connection_pooling;
119 int quic_load_server_info_timeout_ms; 119 int quic_load_server_info_timeout_ms;
120 bool quic_disable_loading_server_info_for_new_servers;
121 float quic_load_server_info_timeout_srtt_multiplier; 120 float quic_load_server_info_timeout_srtt_multiplier;
122 bool quic_enable_truncated_connection_ids; 121 bool quic_enable_truncated_connection_ids;
123 HostPortPair origin_to_force_quic_on; 122 HostPortPair origin_to_force_quic_on;
124 QuicClock* quic_clock; // Will be owned by QuicStreamFactory. 123 QuicClock* quic_clock; // Will be owned by QuicStreamFactory.
125 QuicRandom* quic_random; 124 QuicRandom* quic_random;
126 size_t quic_max_packet_length; 125 size_t quic_max_packet_length;
127 std::string quic_user_agent_id; 126 std::string quic_user_agent_id;
128 bool enable_user_alternate_protocol_ports; 127 bool enable_user_alternate_protocol_ports;
129 QuicCryptoClientStreamFactory* quic_crypto_client_stream_factory; 128 QuicCryptoClientStreamFactory* quic_crypto_client_stream_factory;
130 QuicVersionVector quic_supported_versions; 129 QuicVersionVector quic_supported_versions;
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 247
249 NextProtoVector next_protos_; 248 NextProtoVector next_protos_;
250 bool enabled_protocols_[NUM_VALID_ALTERNATE_PROTOCOLS]; 249 bool enabled_protocols_[NUM_VALID_ALTERNATE_PROTOCOLS];
251 250
252 Params params_; 251 Params params_;
253 }; 252 };
254 253
255 } // namespace net 254 } // namespace net
256 255
257 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ 256 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_
OLDNEW
« no previous file with comments | « net/http/http_chunked_decoder_unittest.cc ('k') | net/http/http_network_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698