| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 SSLConfigService* ssl_config_service; | 73 SSLConfigService* ssl_config_service; |
| 74 HttpAuthHandlerFactory* http_auth_handler_factory; | 74 HttpAuthHandlerFactory* http_auth_handler_factory; |
| 75 NetworkDelegate* network_delegate; | 75 NetworkDelegate* network_delegate; |
| 76 base::WeakPtr<HttpServerProperties> http_server_properties; | 76 base::WeakPtr<HttpServerProperties> http_server_properties; |
| 77 NetLog* net_log; | 77 NetLog* net_log; |
| 78 HostMappingRules* host_mapping_rules; | 78 HostMappingRules* host_mapping_rules; |
| 79 bool enable_ssl_connect_job_waiting; | 79 bool enable_ssl_connect_job_waiting; |
| 80 bool ignore_certificate_errors; | 80 bool ignore_certificate_errors; |
| 81 uint16 testing_fixed_http_port; | 81 uint16 testing_fixed_http_port; |
| 82 uint16 testing_fixed_https_port; | 82 uint16 testing_fixed_https_port; |
| 83 bool enable_tcp_fast_open_for_ssl; |
| 83 | 84 |
| 84 bool force_spdy_single_domain; | 85 bool force_spdy_single_domain; |
| 85 bool enable_spdy_compression; | 86 bool enable_spdy_compression; |
| 86 bool enable_spdy_ping_based_connection_checking; | 87 bool enable_spdy_ping_based_connection_checking; |
| 87 NextProto spdy_default_protocol; | 88 NextProto spdy_default_protocol; |
| 88 // The protocols supported by NPN (next protocol negotiation) during the | 89 // The protocols supported by NPN (next protocol negotiation) during the |
| 89 // SSL handshake as well as by HTTP Alternate-Protocol. | 90 // SSL handshake as well as by HTTP Alternate-Protocol. |
| 90 // TODO(mmenke): This is currently empty by default, and alternate | 91 // TODO(mmenke): This is currently empty by default, and alternate |
| 91 // protocols are disabled. We should use some reasonable | 92 // protocols are disabled. We should use some reasonable |
| 92 // defaults. | 93 // defaults. |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 | 239 |
| 239 std::vector<std::string> next_protos_; | 240 std::vector<std::string> next_protos_; |
| 240 bool enabled_protocols_[NUM_VALID_ALTERNATE_PROTOCOLS]; | 241 bool enabled_protocols_[NUM_VALID_ALTERNATE_PROTOCOLS]; |
| 241 | 242 |
| 242 Params params_; | 243 Params params_; |
| 243 }; | 244 }; |
| 244 | 245 |
| 245 } // namespace net | 246 } // namespace net |
| 246 | 247 |
| 247 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ | 248 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ |
| OLD | NEW |