| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 public base::MemoryCoordinatorClient { | 78 public base::MemoryCoordinatorClient { |
| 79 public: | 79 public: |
| 80 struct NET_EXPORT Params { | 80 struct NET_EXPORT Params { |
| 81 Params(); | 81 Params(); |
| 82 Params(const Params& other); | 82 Params(const Params& other); |
| 83 ~Params(); | 83 ~Params(); |
| 84 | 84 |
| 85 ClientSocketFactory* client_socket_factory; | 85 ClientSocketFactory* client_socket_factory; |
| 86 HostResolver* host_resolver; | 86 HostResolver* host_resolver; |
| 87 CertVerifier* cert_verifier; | 87 CertVerifier* cert_verifier; |
| 88 bool enable_server_push_cancellation; |
| 88 ChannelIDService* channel_id_service; | 89 ChannelIDService* channel_id_service; |
| 89 TransportSecurityState* transport_security_state; | 90 TransportSecurityState* transport_security_state; |
| 90 CTVerifier* cert_transparency_verifier; | 91 CTVerifier* cert_transparency_verifier; |
| 91 CTPolicyEnforcer* ct_policy_enforcer; | 92 CTPolicyEnforcer* ct_policy_enforcer; |
| 92 ProxyService* proxy_service; | 93 ProxyService* proxy_service; |
| 93 SSLConfigService* ssl_config_service; | 94 SSLConfigService* ssl_config_service; |
| 94 HttpAuthHandlerFactory* http_auth_handler_factory; | 95 HttpAuthHandlerFactory* http_auth_handler_factory; |
| 95 HttpServerProperties* http_server_properties; | 96 HttpServerProperties* http_server_properties; |
| 96 NetLog* net_log; | 97 NetLog* net_log; |
| 97 HostMappingRules* host_mapping_rules; | 98 HostMappingRules* host_mapping_rules; |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 NextProtoVector next_protos_; | 351 NextProtoVector next_protos_; |
| 351 | 352 |
| 352 Params params_; | 353 Params params_; |
| 353 | 354 |
| 354 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_; | 355 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_; |
| 355 }; | 356 }; |
| 356 | 357 |
| 357 } // namespace net | 358 } // namespace net |
| 358 | 359 |
| 359 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ | 360 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ |
| OLD | NEW |