| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 CTVerifier* cert_transparency_verifier; | 90 CTVerifier* cert_transparency_verifier; |
| 91 CTPolicyEnforcer* ct_policy_enforcer; | 91 CTPolicyEnforcer* ct_policy_enforcer; |
| 92 ProxyService* proxy_service; | 92 ProxyService* proxy_service; |
| 93 SSLConfigService* ssl_config_service; | 93 SSLConfigService* ssl_config_service; |
| 94 HttpAuthHandlerFactory* http_auth_handler_factory; | 94 HttpAuthHandlerFactory* http_auth_handler_factory; |
| 95 HttpServerProperties* http_server_properties; | 95 HttpServerProperties* http_server_properties; |
| 96 NetLog* net_log; | 96 NetLog* net_log; |
| 97 HostMappingRules* host_mapping_rules; | 97 HostMappingRules* host_mapping_rules; |
| 98 SocketPerformanceWatcherFactory* socket_performance_watcher_factory; | 98 SocketPerformanceWatcherFactory* socket_performance_watcher_factory; |
| 99 bool ignore_certificate_errors; | 99 bool ignore_certificate_errors; |
| 100 std::set<std::string> ignore_certificate_error_spki_list; |
| 100 uint16_t testing_fixed_http_port; | 101 uint16_t testing_fixed_http_port; |
| 101 uint16_t testing_fixed_https_port; | 102 uint16_t testing_fixed_https_port; |
| 102 bool enable_tcp_fast_open_for_ssl; | 103 bool enable_tcp_fast_open_for_ssl; |
| 103 | 104 |
| 104 // Use SPDY ping frames to test for connection health after idle. | 105 // Use SPDY ping frames to test for connection health after idle. |
| 105 bool enable_spdy_ping_based_connection_checking; | 106 bool enable_spdy_ping_based_connection_checking; |
| 106 bool enable_http2; | 107 bool enable_http2; |
| 107 size_t spdy_session_max_recv_window_size; | 108 size_t spdy_session_max_recv_window_size; |
| 108 // HTTP/2 connection settings. | 109 // HTTP/2 connection settings. |
| 109 // Unknown settings will still be sent to the server. | 110 // Unknown settings will still be sent to the server. |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 NextProtoVector next_protos_; | 347 NextProtoVector next_protos_; |
| 347 | 348 |
| 348 Params params_; | 349 Params params_; |
| 349 | 350 |
| 350 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_; | 351 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_; |
| 351 }; | 352 }; |
| 352 | 353 |
| 353 } // namespace net | 354 } // namespace net |
| 354 | 355 |
| 355 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ | 356 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ |
| OLD | NEW |