| 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 | 87 |
| 88 // Use SPDY ping frames to test for connection health after idle. | 88 // Use SPDY ping frames to test for connection health after idle. |
| 89 bool enable_spdy_ping_based_connection_checking; | 89 bool enable_spdy_ping_based_connection_checking; |
| 90 NextProto spdy_default_protocol; | 90 NextProto spdy_default_protocol; |
| 91 bool enable_spdy31; | 91 bool enable_spdy31; |
| 92 bool enable_http2; | 92 bool enable_http2; |
| 93 size_t spdy_session_max_recv_window_size; | 93 size_t spdy_session_max_recv_window_size; |
| 94 size_t spdy_stream_max_recv_window_size; | 94 size_t spdy_stream_max_recv_window_size; |
| 95 // Source of time for SPDY connections. | 95 // Source of time for SPDY connections. |
| 96 SpdySessionPool::TimeFunc time_func; | 96 SpdySessionPool::TimeFunc time_func; |
| 97 // Whether to enable Alt-Svc entries with hostname different than that of | 97 // Whether to enable HTTP/2 Alt-Svc entries with hostname different than |
| 98 // the origin. | 98 // that of the origin. |
| 99 bool enable_alternative_service_with_different_host; | 99 bool enable_http2_alternative_service_with_different_host; |
| 100 // Whether to enable QUIC Alt-Svc entries with hostname different than that |
| 101 // of the origin. |
| 102 bool enable_quic_alternative_service_with_different_host; |
| 100 // Only set for tests. | 103 // Only set for tests. |
| 101 // TODO(bnc) https://crbug.com/615497: | 104 // TODO(bnc) https://crbug.com/615497: |
| 102 // Adapt tests to https requests, remove this member. | 105 // Adapt tests to https requests, remove this member. |
| 103 bool enable_alternative_service_for_insecure_origins; | 106 bool enable_alternative_service_for_insecure_origins; |
| 104 | 107 |
| 105 // Enables NPN support. Note that ALPN is always enabled. | 108 // Enables NPN support. Note that ALPN is always enabled. |
| 106 bool enable_npn; | 109 bool enable_npn; |
| 107 | 110 |
| 108 // Enable setting of HTTP/2 dependencies based on priority. | 111 // Enable setting of HTTP/2 dependencies based on priority. |
| 109 bool enable_priority_dependencies; | 112 bool enable_priority_dependencies; |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 | 299 |
| 297 NextProtoVector next_protos_; | 300 NextProtoVector next_protos_; |
| 298 bool enabled_protocols_[NUM_VALID_ALTERNATE_PROTOCOLS]; | 301 bool enabled_protocols_[NUM_VALID_ALTERNATE_PROTOCOLS]; |
| 299 | 302 |
| 300 Params params_; | 303 Params params_; |
| 301 }; | 304 }; |
| 302 | 305 |
| 303 } // namespace net | 306 } // namespace net |
| 304 | 307 |
| 305 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ | 308 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ |
| OLD | NEW |