| 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; | |
| 89 ChannelIDService* channel_id_service; | 88 ChannelIDService* channel_id_service; |
| 90 TransportSecurityState* transport_security_state; | 89 TransportSecurityState* transport_security_state; |
| 91 CTVerifier* cert_transparency_verifier; | 90 CTVerifier* cert_transparency_verifier; |
| 92 CTPolicyEnforcer* ct_policy_enforcer; | 91 CTPolicyEnforcer* ct_policy_enforcer; |
| 93 ProxyService* proxy_service; | 92 ProxyService* proxy_service; |
| 94 SSLConfigService* ssl_config_service; | 93 SSLConfigService* ssl_config_service; |
| 95 HttpAuthHandlerFactory* http_auth_handler_factory; | 94 HttpAuthHandlerFactory* http_auth_handler_factory; |
| 96 HttpServerProperties* http_server_properties; | 95 HttpServerProperties* http_server_properties; |
| 97 NetLog* net_log; | 96 NetLog* net_log; |
| 98 HostMappingRules* host_mapping_rules; | 97 HostMappingRules* host_mapping_rules; |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 NextProtoVector next_protos_; | 346 NextProtoVector next_protos_; |
| 348 | 347 |
| 349 Params params_; | 348 Params params_; |
| 350 | 349 |
| 351 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_; | 350 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_; |
| 352 }; | 351 }; |
| 353 | 352 |
| 354 } // namespace net | 353 } // namespace net |
| 355 | 354 |
| 356 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ | 355 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ |
| OLD | NEW |