| 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 #include <vector> | 10 #include <vector> |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 size_t spdy_stream_max_recv_window_size; | 98 size_t spdy_stream_max_recv_window_size; |
| 99 size_t spdy_initial_max_concurrent_streams; | 99 size_t spdy_initial_max_concurrent_streams; |
| 100 SpdySessionPool::TimeFunc time_func; | 100 SpdySessionPool::TimeFunc time_func; |
| 101 std::string trusted_spdy_proxy; | 101 std::string trusted_spdy_proxy; |
| 102 // URLs to exclude from forced SPDY. | 102 // URLs to exclude from forced SPDY. |
| 103 std::set<HostPortPair> forced_spdy_exclusions; | 103 std::set<HostPortPair> forced_spdy_exclusions; |
| 104 bool use_alternative_services; | 104 bool use_alternative_services; |
| 105 double alternative_service_probability_threshold; | 105 double alternative_service_probability_threshold; |
| 106 | 106 |
| 107 bool enable_quic; | 107 bool enable_quic; |
| 108 bool enable_insecure_quic; | |
| 109 bool enable_quic_for_proxies; | 108 bool enable_quic_for_proxies; |
| 110 bool enable_quic_port_selection; | 109 bool enable_quic_port_selection; |
| 111 bool quic_always_require_handshake_confirmation; | 110 bool quic_always_require_handshake_confirmation; |
| 112 bool quic_disable_connection_pooling; | 111 bool quic_disable_connection_pooling; |
| 113 float quic_load_server_info_timeout_srtt_multiplier; | 112 float quic_load_server_info_timeout_srtt_multiplier; |
| 114 bool quic_enable_connection_racing; | 113 bool quic_enable_connection_racing; |
| 115 bool quic_enable_non_blocking_io; | 114 bool quic_enable_non_blocking_io; |
| 116 bool quic_disable_disk_cache; | 115 bool quic_disable_disk_cache; |
| 117 bool quic_prefer_aes; | 116 bool quic_prefer_aes; |
| 118 int quic_max_number_of_lossy_connections; | 117 int quic_max_number_of_lossy_connections; |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 | 241 |
| 243 NextProtoVector next_protos_; | 242 NextProtoVector next_protos_; |
| 244 bool enabled_protocols_[NUM_VALID_ALTERNATE_PROTOCOLS]; | 243 bool enabled_protocols_[NUM_VALID_ALTERNATE_PROTOCOLS]; |
| 245 | 244 |
| 246 Params params_; | 245 Params params_; |
| 247 }; | 246 }; |
| 248 | 247 |
| 249 } // namespace net | 248 } // namespace net |
| 250 | 249 |
| 251 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ | 250 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ |
| OLD | NEW |