| 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 | 10 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 public: | 55 public: |
| 56 struct NET_EXPORT Params { | 56 struct NET_EXPORT Params { |
| 57 Params(); | 57 Params(); |
| 58 ~Params(); | 58 ~Params(); |
| 59 | 59 |
| 60 ClientSocketFactory* client_socket_factory; | 60 ClientSocketFactory* client_socket_factory; |
| 61 HostResolver* host_resolver; | 61 HostResolver* host_resolver; |
| 62 CertVerifier* cert_verifier; | 62 CertVerifier* cert_verifier; |
| 63 ServerBoundCertService* server_bound_cert_service; | 63 ServerBoundCertService* server_bound_cert_service; |
| 64 TransportSecurityState* transport_security_state; | 64 TransportSecurityState* transport_security_state; |
| 65 CTVerifier* cert_transparency_verifier; |
| 65 ProxyService* proxy_service; | 66 ProxyService* proxy_service; |
| 66 std::string ssl_session_cache_shard; | 67 std::string ssl_session_cache_shard; |
| 67 SSLConfigService* ssl_config_service; | 68 SSLConfigService* ssl_config_service; |
| 68 HttpAuthHandlerFactory* http_auth_handler_factory; | 69 HttpAuthHandlerFactory* http_auth_handler_factory; |
| 69 NetworkDelegate* network_delegate; | 70 NetworkDelegate* network_delegate; |
| 70 base::WeakPtr<HttpServerProperties> http_server_properties; | 71 base::WeakPtr<HttpServerProperties> http_server_properties; |
| 71 NetLog* net_log; | 72 NetLog* net_log; |
| 72 HostMappingRules* host_mapping_rules; | 73 HostMappingRules* host_mapping_rules; |
| 73 bool force_http_pipelining; | 74 bool force_http_pipelining; |
| 74 bool ignore_certificate_errors; | 75 bool ignore_certificate_errors; |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 scoped_ptr<HttpStreamFactory> http_stream_factory_; | 201 scoped_ptr<HttpStreamFactory> http_stream_factory_; |
| 201 scoped_ptr<HttpStreamFactory> http_stream_factory_for_websocket_; | 202 scoped_ptr<HttpStreamFactory> http_stream_factory_for_websocket_; |
| 202 std::set<HttpResponseBodyDrainer*> response_drainers_; | 203 std::set<HttpResponseBodyDrainer*> response_drainers_; |
| 203 | 204 |
| 204 Params params_; | 205 Params params_; |
| 205 }; | 206 }; |
| 206 | 207 |
| 207 } // namespace net | 208 } // namespace net |
| 208 | 209 |
| 209 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ | 210 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ |
| OLD | NEW |