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 <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 uint16 testing_fixed_http_port; | 171 uint16 testing_fixed_http_port; |
172 uint16 testing_fixed_https_port; | 172 uint16 testing_fixed_https_port; |
173 Optional<bool> enable_tcp_fast_open_for_ssl; | 173 Optional<bool> enable_tcp_fast_open_for_ssl; |
174 | 174 |
175 Optional<size_t> initial_max_spdy_concurrent_streams; | 175 Optional<size_t> initial_max_spdy_concurrent_streams; |
176 Optional<bool> force_spdy_single_domain; | 176 Optional<bool> force_spdy_single_domain; |
177 Optional<bool> enable_spdy_compression; | 177 Optional<bool> enable_spdy_compression; |
178 Optional<bool> enable_spdy_ping_based_connection_checking; | 178 Optional<bool> enable_spdy_ping_based_connection_checking; |
179 Optional<net::NextProto> spdy_default_protocol; | 179 Optional<net::NextProto> spdy_default_protocol; |
180 net::NextProtoVector next_protos; | 180 net::NextProtoVector next_protos; |
181 Optional<string> trusted_spdy_proxy; | 181 Optional<std::string> trusted_spdy_proxy; |
182 Optional<bool> force_spdy_over_ssl; | 182 Optional<bool> force_spdy_over_ssl; |
183 Optional<bool> force_spdy_always; | 183 Optional<bool> force_spdy_always; |
184 std::set<net::HostPortPair> forced_spdy_exclusions; | 184 std::set<net::HostPortPair> forced_spdy_exclusions; |
185 Optional<bool> use_alternate_protocols; | 185 Optional<bool> use_alternate_protocols; |
186 Optional<double> alternate_protocol_probability_threshold; | 186 Optional<double> alternate_protocol_probability_threshold; |
187 | 187 |
188 Optional<bool> enable_quic; | 188 Optional<bool> enable_quic; |
189 Optional<bool> enable_quic_port_selection; | 189 Optional<bool> enable_quic_port_selection; |
190 Optional<bool> quic_always_require_handshake_confirmation; | 190 Optional<bool> quic_always_require_handshake_confirmation; |
191 Optional<bool> quic_disable_connection_pooling; | 191 Optional<bool> quic_disable_connection_pooling; |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
454 bool is_spdy_disabled_by_policy_; | 454 bool is_spdy_disabled_by_policy_; |
455 | 455 |
456 const base::TimeTicks creation_time_; | 456 const base::TimeTicks creation_time_; |
457 | 457 |
458 base::WeakPtrFactory<IOThread> weak_factory_; | 458 base::WeakPtrFactory<IOThread> weak_factory_; |
459 | 459 |
460 DISALLOW_COPY_AND_ASSIGN(IOThread); | 460 DISALLOW_COPY_AND_ASSIGN(IOThread); |
461 }; | 461 }; |
462 | 462 |
463 #endif // CHROME_BROWSER_IO_THREAD_H_ | 463 #endif // CHROME_BROWSER_IO_THREAD_H_ |
OLD | NEW |