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

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

Issue 981723008: Unwind the SSL connection holdback experiment and remove related code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename & reformat 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/common/chrome_switches.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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 TransportSecurityState* transport_security_state; 72 TransportSecurityState* transport_security_state;
73 CTVerifier* cert_transparency_verifier; 73 CTVerifier* cert_transparency_verifier;
74 ProxyService* proxy_service; 74 ProxyService* proxy_service;
75 std::string ssl_session_cache_shard; 75 std::string ssl_session_cache_shard;
76 SSLConfigService* ssl_config_service; 76 SSLConfigService* ssl_config_service;
77 HttpAuthHandlerFactory* http_auth_handler_factory; 77 HttpAuthHandlerFactory* http_auth_handler_factory;
78 NetworkDelegate* network_delegate; 78 NetworkDelegate* network_delegate;
79 base::WeakPtr<HttpServerProperties> http_server_properties; 79 base::WeakPtr<HttpServerProperties> http_server_properties;
80 NetLog* net_log; 80 NetLog* net_log;
81 HostMappingRules* host_mapping_rules; 81 HostMappingRules* host_mapping_rules;
82 bool enable_ssl_connect_job_waiting;
83 bool ignore_certificate_errors; 82 bool ignore_certificate_errors;
84 bool use_stale_while_revalidate; 83 bool use_stale_while_revalidate;
85 uint16 testing_fixed_http_port; 84 uint16 testing_fixed_http_port;
86 uint16 testing_fixed_https_port; 85 uint16 testing_fixed_https_port;
87 bool enable_tcp_fast_open_for_ssl; 86 bool enable_tcp_fast_open_for_ssl;
88 87
89 bool force_spdy_single_domain; 88 bool force_spdy_single_domain;
90 bool enable_spdy_compression; 89 bool enable_spdy_compression;
91 bool enable_spdy_ping_based_connection_checking; 90 bool enable_spdy_ping_based_connection_checking;
92 NextProto spdy_default_protocol; 91 NextProto spdy_default_protocol;
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 249
251 NextProtoVector next_protos_; 250 NextProtoVector next_protos_;
252 bool enabled_protocols_[NUM_VALID_ALTERNATE_PROTOCOLS]; 251 bool enabled_protocols_[NUM_VALID_ALTERNATE_PROTOCOLS];
253 252
254 Params params_; 253 Params params_;
255 }; 254 };
256 255
257 } // namespace net 256 } // namespace net
258 257
259 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ 258 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | net/http/http_network_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698