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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 // alternate server address. | 168 // alternate server address. |
169 bool quic_allow_server_migration; | 169 bool quic_allow_server_migration; |
170 // If true, bidirectional streams over QUIC will be disabled. | 170 // If true, bidirectional streams over QUIC will be disabled. |
171 bool quic_disable_bidirectional_streams; | 171 bool quic_disable_bidirectional_streams; |
172 // If true, enable force HOL blocking. For measurement purposes. | 172 // If true, enable force HOL blocking. For measurement purposes. |
173 bool quic_force_hol_blocking; | 173 bool quic_force_hol_blocking; |
174 // If true, race cert verification with host resolution. | 174 // If true, race cert verification with host resolution. |
175 bool quic_race_cert_verification; | 175 bool quic_race_cert_verification; |
176 // If true, configure QUIC sockets to not fragment packets. | 176 // If true, configure QUIC sockets to not fragment packets. |
177 bool quic_do_not_fragment; | 177 bool quic_do_not_fragment; |
178 // If true, alternative service is not marked as broken if the alternative | |
179 // job fails due to a network change event. | |
180 bool quic_do_not_mark_as_broken_on_network_change; | |
181 // If true, estimate the initial RTT for QUIC connections based on network. | 178 // If true, estimate the initial RTT for QUIC connections based on network. |
182 bool quic_estimate_initial_rtt; | 179 bool quic_estimate_initial_rtt; |
183 | 180 |
184 ProxyDelegate* proxy_delegate; | 181 ProxyDelegate* proxy_delegate; |
185 // Enable support for Token Binding. | 182 // Enable support for Token Binding. |
186 bool enable_token_binding; | 183 bool enable_token_binding; |
187 | 184 |
188 // Enable HTTP/0.9 for HTTP/HTTPS on ports other than the default one for | 185 // Enable HTTP/0.9 for HTTP/HTTPS on ports other than the default one for |
189 // each protocol. | 186 // each protocol. |
190 bool http_09_on_non_default_ports_enabled; | 187 bool http_09_on_non_default_ports_enabled; |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
322 NextProtoVector next_protos_; | 319 NextProtoVector next_protos_; |
323 | 320 |
324 Params params_; | 321 Params params_; |
325 | 322 |
326 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_; | 323 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_; |
327 }; | 324 }; |
328 | 325 |
329 } // namespace net | 326 } // namespace net |
330 | 327 |
331 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ | 328 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ |
OLD | NEW |