| 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 CHROME_BROWSER_IO_THREAD_H_ | 5 #ifndef CHROME_BROWSER_IO_THREAD_H_ |
| 6 #define CHROME_BROWSER_IO_THREAD_H_ | 6 #define CHROME_BROWSER_IO_THREAD_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 uint16_t testing_fixed_http_port; | 202 uint16_t testing_fixed_http_port; |
| 203 uint16_t testing_fixed_https_port; | 203 uint16_t testing_fixed_https_port; |
| 204 Optional<bool> enable_tcp_fast_open_for_ssl; | 204 Optional<bool> enable_tcp_fast_open_for_ssl; |
| 205 | 205 |
| 206 Optional<size_t> initial_max_spdy_concurrent_streams; | 206 Optional<size_t> initial_max_spdy_concurrent_streams; |
| 207 Optional<bool> enable_spdy_compression; | 207 Optional<bool> enable_spdy_compression; |
| 208 Optional<bool> enable_spdy_ping_based_connection_checking; | 208 Optional<bool> enable_spdy_ping_based_connection_checking; |
| 209 Optional<net::NextProto> spdy_default_protocol; | 209 Optional<net::NextProto> spdy_default_protocol; |
| 210 Optional<bool> enable_spdy31; | 210 Optional<bool> enable_spdy31; |
| 211 Optional<bool> enable_http2; | 211 Optional<bool> enable_http2; |
| 212 Optional<std::string> trusted_spdy_proxy; | |
| 213 std::set<net::HostPortPair> forced_spdy_exclusions; | 212 std::set<net::HostPortPair> forced_spdy_exclusions; |
| 214 Optional<bool> parse_alternative_services; | 213 Optional<bool> parse_alternative_services; |
| 215 Optional<bool> enable_alternative_service_with_different_host; | 214 Optional<bool> enable_alternative_service_with_different_host; |
| 216 Optional<double> alternative_service_probability_threshold; | 215 Optional<double> alternative_service_probability_threshold; |
| 217 | 216 |
| 218 Optional<bool> enable_npn; | 217 Optional<bool> enable_npn; |
| 219 | 218 |
| 220 Optional<bool> enable_brotli; | 219 Optional<bool> enable_brotli; |
| 221 | 220 |
| 222 Optional<bool> enable_quic; | 221 Optional<bool> enable_quic; |
| (...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 597 bool is_quic_allowed_by_policy_; | 596 bool is_quic_allowed_by_policy_; |
| 598 | 597 |
| 599 const base::TimeTicks creation_time_; | 598 const base::TimeTicks creation_time_; |
| 600 | 599 |
| 601 base::WeakPtrFactory<IOThread> weak_factory_; | 600 base::WeakPtrFactory<IOThread> weak_factory_; |
| 602 | 601 |
| 603 DISALLOW_COPY_AND_ASSIGN(IOThread); | 602 DISALLOW_COPY_AND_ASSIGN(IOThread); |
| 604 }; | 603 }; |
| 605 | 604 |
| 606 #endif // CHROME_BROWSER_IO_THREAD_H_ | 605 #endif // CHROME_BROWSER_IO_THREAD_H_ |
| OLD | NEW |