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

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

Issue 975613002: QUIC - minor cleanup of the following field trials and used defaults for (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: set default value for srtt_multiplier in net Created 5 years, 9 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 | « chrome/browser/io_thread_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_for_proxies; 116 bool enable_quic_for_proxies;
117 bool enable_quic_port_selection; 117 bool enable_quic_port_selection;
118 bool quic_always_require_handshake_confirmation; 118 bool quic_always_require_handshake_confirmation;
119 bool quic_disable_connection_pooling; 119 bool quic_disable_connection_pooling;
120 int quic_load_server_info_timeout_ms;
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;
123 bool quic_enable_connection_racing; 121 bool quic_enable_connection_racing;
124 bool quic_enable_non_blocking_io; 122 bool quic_enable_non_blocking_io;
125 bool quic_disable_disk_cache; 123 bool quic_disable_disk_cache;
126 int quic_socket_receive_buffer_size; 124 int quic_socket_receive_buffer_size;
127 HostPortPair origin_to_force_quic_on; 125 HostPortPair origin_to_force_quic_on;
128 QuicClock* quic_clock; // Will be owned by QuicStreamFactory. 126 QuicClock* quic_clock; // Will be owned by QuicStreamFactory.
129 QuicRandom* quic_random; 127 QuicRandom* quic_random;
130 size_t quic_max_packet_length; 128 size_t quic_max_packet_length;
131 std::string quic_user_agent_id; 129 std::string quic_user_agent_id;
132 bool enable_user_alternate_protocol_ports; 130 bool enable_user_alternate_protocol_ports;
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 250
253 NextProtoVector next_protos_; 251 NextProtoVector next_protos_;
254 bool enabled_protocols_[NUM_VALID_ALTERNATE_PROTOCOLS]; 252 bool enabled_protocols_[NUM_VALID_ALTERNATE_PROTOCOLS];
255 253
256 Params params_; 254 Params params_;
257 }; 255 };
258 256
259 } // namespace net 257 } // namespace net
260 258
261 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ 259 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_
OLDNEW
« no previous file with comments | « chrome/browser/io_thread_unittest.cc ('k') | net/http/http_network_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698