| 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; | 160 Optional<bool> enable_spdy_ip_pooling; |
| 162 Optional<bool> enable_spdy_compression; | 161 Optional<bool> enable_spdy_compression; |
| 163 Optional<bool> enable_spdy_ping_based_connection_checking; | 162 Optional<bool> enable_spdy_ping_based_connection_checking; |
| 164 Optional<net::NextProto> spdy_default_protocol; | 163 Optional<net::NextProto> spdy_default_protocol; |
| 165 Optional<string> trusted_spdy_proxy; | 164 Optional<string> trusted_spdy_proxy; |
| 166 Optional<bool> enable_quic; | 165 Optional<bool> enable_quic; |
| 167 Optional<bool> enable_quic_https; | 166 Optional<bool> enable_quic_https; |
| 168 Optional<bool> enable_quic_port_selection; | 167 Optional<bool> enable_quic_port_selection; |
| 169 Optional<size_t> quic_max_packet_length; | 168 Optional<size_t> quic_max_packet_length; |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 | 343 |
| 345 // True if SPDY is disabled by policy. | 344 // True if SPDY is disabled by policy. |
| 346 bool is_spdy_disabled_by_policy_; | 345 bool is_spdy_disabled_by_policy_; |
| 347 | 346 |
| 348 base::WeakPtrFactory<IOThread> weak_factory_; | 347 base::WeakPtrFactory<IOThread> weak_factory_; |
| 349 | 348 |
| 350 DISALLOW_COPY_AND_ASSIGN(IOThread); | 349 DISALLOW_COPY_AND_ASSIGN(IOThread); |
| 351 }; | 350 }; |
| 352 | 351 |
| 353 #endif // CHROME_BROWSER_IO_THREAD_H_ | 352 #endif // CHROME_BROWSER_IO_THREAD_H_ |
| OLD | NEW |