OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |