| 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 extension_event_router_forwarder; | 149 extension_event_router_forwarder; |
| 150 scoped_ptr<chrome_browser_net::HttpPipeliningCompatibilityClient> | 150 scoped_ptr<chrome_browser_net::HttpPipeliningCompatibilityClient> |
| 151 http_pipelining_compatibility_client; | 151 http_pipelining_compatibility_client; |
| 152 scoped_ptr<net::HostMappingRules> host_mapping_rules; | 152 scoped_ptr<net::HostMappingRules> host_mapping_rules; |
| 153 scoped_ptr<net::HttpUserAgentSettings> http_user_agent_settings; | 153 scoped_ptr<net::HttpUserAgentSettings> http_user_agent_settings; |
| 154 bool ignore_certificate_errors; | 154 bool ignore_certificate_errors; |
| 155 bool http_pipelining_enabled; | 155 bool http_pipelining_enabled; |
| 156 uint16 testing_fixed_http_port; | 156 uint16 testing_fixed_http_port; |
| 157 uint16 testing_fixed_https_port; | 157 uint16 testing_fixed_https_port; |
| 158 Optional<size_t> initial_max_spdy_concurrent_streams; | 158 Optional<size_t> initial_max_spdy_concurrent_streams; |
| 159 Optional<size_t> max_spdy_concurrent_streams_limit; | |
| 160 Optional<bool> force_spdy_single_domain; | 159 Optional<bool> force_spdy_single_domain; |
| 161 Optional<bool> enable_spdy_ip_pooling; | |
| 162 Optional<bool> enable_spdy_compression; | 160 Optional<bool> enable_spdy_compression; |
| 163 Optional<bool> enable_spdy_ping_based_connection_checking; | 161 Optional<bool> enable_spdy_ping_based_connection_checking; |
| 164 Optional<net::NextProto> spdy_default_protocol; | 162 Optional<net::NextProto> spdy_default_protocol; |
| 165 Optional<string> trusted_spdy_proxy; | 163 Optional<string> trusted_spdy_proxy; |
| 166 Optional<bool> enable_quic; | 164 Optional<bool> enable_quic; |
| 167 Optional<bool> enable_quic_https; | 165 Optional<bool> enable_quic_https; |
| 168 Optional<bool> enable_quic_pacing; | 166 Optional<bool> enable_quic_pacing; |
| 169 Optional<bool> enable_quic_port_selection; | 167 Optional<bool> enable_quic_port_selection; |
| 170 Optional<size_t> quic_max_packet_length; | 168 Optional<size_t> quic_max_packet_length; |
| 171 Optional<net::QuicVersionVector> quic_supported_versions; | 169 Optional<net::QuicVersionVector> quic_supported_versions; |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 | 348 |
| 351 // True if SPDY is disabled by policy. | 349 // True if SPDY is disabled by policy. |
| 352 bool is_spdy_disabled_by_policy_; | 350 bool is_spdy_disabled_by_policy_; |
| 353 | 351 |
| 354 base::WeakPtrFactory<IOThread> weak_factory_; | 352 base::WeakPtrFactory<IOThread> weak_factory_; |
| 355 | 353 |
| 356 DISALLOW_COPY_AND_ASSIGN(IOThread); | 354 DISALLOW_COPY_AND_ASSIGN(IOThread); |
| 357 }; | 355 }; |
| 358 | 356 |
| 359 #endif // CHROME_BROWSER_IO_THREAD_H_ | 357 #endif // CHROME_BROWSER_IO_THREAD_H_ |
| OLD | NEW |