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 <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 uint16 testing_fixed_https_port; | 169 uint16 testing_fixed_https_port; |
170 Optional<bool> enable_tcp_fast_open_for_ssl; | 170 Optional<bool> enable_tcp_fast_open_for_ssl; |
171 | 171 |
172 Optional<size_t> initial_max_spdy_concurrent_streams; | 172 Optional<size_t> initial_max_spdy_concurrent_streams; |
173 Optional<bool> enable_spdy_compression; | 173 Optional<bool> enable_spdy_compression; |
174 Optional<bool> enable_spdy_ping_based_connection_checking; | 174 Optional<bool> enable_spdy_ping_based_connection_checking; |
175 Optional<net::NextProto> spdy_default_protocol; | 175 Optional<net::NextProto> spdy_default_protocol; |
176 net::NextProtoVector next_protos; | 176 net::NextProtoVector next_protos; |
177 Optional<std::string> trusted_spdy_proxy; | 177 Optional<std::string> trusted_spdy_proxy; |
178 std::set<net::HostPortPair> forced_spdy_exclusions; | 178 std::set<net::HostPortPair> forced_spdy_exclusions; |
179 Optional<bool> use_alternate_protocols; | 179 Optional<bool> use_alternative_services; |
180 Optional<double> alternative_service_probability_threshold; | 180 Optional<double> alternative_service_probability_threshold; |
181 | 181 |
182 Optional<bool> enable_quic; | 182 Optional<bool> enable_quic; |
183 Optional<bool> enable_insecure_quic; | 183 Optional<bool> enable_insecure_quic; |
184 Optional<bool> enable_quic_for_proxies; | 184 Optional<bool> enable_quic_for_proxies; |
185 Optional<bool> enable_quic_port_selection; | 185 Optional<bool> enable_quic_port_selection; |
186 Optional<bool> quic_always_require_handshake_confirmation; | 186 Optional<bool> quic_always_require_handshake_confirmation; |
187 Optional<bool> quic_disable_connection_pooling; | 187 Optional<bool> quic_disable_connection_pooling; |
188 Optional<float> quic_load_server_info_timeout_srtt_multiplier; | 188 Optional<float> quic_load_server_info_timeout_srtt_multiplier; |
189 Optional<bool> quic_enable_connection_racing; | 189 Optional<bool> quic_enable_connection_racing; |
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
482 bool is_quic_allowed_by_policy_; | 482 bool is_quic_allowed_by_policy_; |
483 | 483 |
484 const base::TimeTicks creation_time_; | 484 const base::TimeTicks creation_time_; |
485 | 485 |
486 base::WeakPtrFactory<IOThread> weak_factory_; | 486 base::WeakPtrFactory<IOThread> weak_factory_; |
487 | 487 |
488 DISALLOW_COPY_AND_ASSIGN(IOThread); | 488 DISALLOW_COPY_AND_ASSIGN(IOThread); |
489 }; | 489 }; |
490 | 490 |
491 #endif // CHROME_BROWSER_IO_THREAD_H_ | 491 #endif // CHROME_BROWSER_IO_THREAD_H_ |
OLD | NEW |