| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 NetworkDelegate* network_delegate; | 72 NetworkDelegate* network_delegate; |
| 73 base::WeakPtr<HttpServerProperties> http_server_properties; | 73 base::WeakPtr<HttpServerProperties> http_server_properties; |
| 74 NetLog* net_log; | 74 NetLog* net_log; |
| 75 HostMappingRules* host_mapping_rules; | 75 HostMappingRules* host_mapping_rules; |
| 76 bool force_http_pipelining; | 76 bool force_http_pipelining; |
| 77 bool ignore_certificate_errors; | 77 bool ignore_certificate_errors; |
| 78 bool http_pipelining_enabled; | 78 bool http_pipelining_enabled; |
| 79 uint16 testing_fixed_http_port; | 79 uint16 testing_fixed_http_port; |
| 80 uint16 testing_fixed_https_port; | 80 uint16 testing_fixed_https_port; |
| 81 bool force_spdy_single_domain; | 81 bool force_spdy_single_domain; |
| 82 bool enable_spdy_ip_pooling; | |
| 83 bool enable_spdy_compression; | 82 bool enable_spdy_compression; |
| 84 bool enable_spdy_ping_based_connection_checking; | 83 bool enable_spdy_ping_based_connection_checking; |
| 85 NextProto spdy_default_protocol; | 84 NextProto spdy_default_protocol; |
| 86 size_t spdy_stream_initial_recv_window_size; | 85 size_t spdy_stream_initial_recv_window_size; |
| 87 size_t spdy_initial_max_concurrent_streams; | 86 size_t spdy_initial_max_concurrent_streams; |
| 88 size_t spdy_max_concurrent_streams_limit; | 87 size_t spdy_max_concurrent_streams_limit; |
| 89 SpdySessionPool::TimeFunc time_func; | 88 SpdySessionPool::TimeFunc time_func; |
| 90 std::string trusted_spdy_proxy; | 89 std::string trusted_spdy_proxy; |
| 91 bool enable_quic; | 90 bool enable_quic; |
| 92 bool enable_quic_https; | 91 bool enable_quic_https; |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 scoped_ptr<HttpStreamFactory> http_stream_factory_; | 205 scoped_ptr<HttpStreamFactory> http_stream_factory_; |
| 207 scoped_ptr<HttpStreamFactory> http_stream_factory_for_websocket_; | 206 scoped_ptr<HttpStreamFactory> http_stream_factory_for_websocket_; |
| 208 std::set<HttpResponseBodyDrainer*> response_drainers_; | 207 std::set<HttpResponseBodyDrainer*> response_drainers_; |
| 209 | 208 |
| 210 Params params_; | 209 Params params_; |
| 211 }; | 210 }; |
| 212 | 211 |
| 213 } // namespace net | 212 } // namespace net |
| 214 | 213 |
| 215 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ | 214 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ |
| OLD | NEW |