| 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 // This class is useful for building a simple URLRequestContext. Most creators | 5 // This class is useful for building a simple URLRequestContext. Most creators |
| 6 // of new URLRequestContexts should use this helper class to construct it. Call | 6 // of new URLRequestContexts should use this helper class to construct it. Call |
| 7 // any configuration params, and when done, invoke Build() to construct the | 7 // any configuration params, and when done, invoke Build() to construct the |
| 8 // URLRequestContext. This URLRequestContext will own all its own storage. | 8 // URLRequestContext. This URLRequestContext will own all its own storage. |
| 9 // | 9 // |
| 10 // URLRequestContextBuilder and its associated params classes are initially | 10 // URLRequestContextBuilder and its associated params classes are initially |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 struct NET_EXPORT HttpNetworkSessionParams { | 78 struct NET_EXPORT HttpNetworkSessionParams { |
| 79 HttpNetworkSessionParams(); | 79 HttpNetworkSessionParams(); |
| 80 ~HttpNetworkSessionParams(); | 80 ~HttpNetworkSessionParams(); |
| 81 | 81 |
| 82 // These fields mirror those in HttpNetworkSession::Params; | 82 // These fields mirror those in HttpNetworkSession::Params; |
| 83 bool ignore_certificate_errors; | 83 bool ignore_certificate_errors; |
| 84 HostMappingRules* host_mapping_rules; | 84 HostMappingRules* host_mapping_rules; |
| 85 uint16_t testing_fixed_http_port; | 85 uint16_t testing_fixed_http_port; |
| 86 uint16_t testing_fixed_https_port; | 86 uint16_t testing_fixed_https_port; |
| 87 NextProtoVector next_protos; | 87 NextProtoVector next_protos; |
| 88 std::string trusted_spdy_proxy; | |
| 89 bool parse_alternative_services; | 88 bool parse_alternative_services; |
| 90 bool enable_alternative_service_with_different_host; | 89 bool enable_alternative_service_with_different_host; |
| 91 bool enable_quic; | 90 bool enable_quic; |
| 92 int quic_max_server_configs_stored_in_properties; | 91 int quic_max_server_configs_stored_in_properties; |
| 93 bool quic_delay_tcp_race; | 92 bool quic_delay_tcp_race; |
| 94 int quic_max_number_of_lossy_connections; | 93 int quic_max_number_of_lossy_connections; |
| 95 std::unordered_set<std::string> quic_host_whitelist; | 94 std::unordered_set<std::string> quic_host_whitelist; |
| 96 float quic_packet_loss_threshold; | 95 float quic_packet_loss_threshold; |
| 97 int quic_idle_connection_timeout_seconds; | 96 int quic_idle_connection_timeout_seconds; |
| 98 QuicTagVector quic_connection_options; | 97 QuicTagVector quic_connection_options; |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 scoped_ptr<CertVerifier> cert_verifier_; | 307 scoped_ptr<CertVerifier> cert_verifier_; |
| 309 std::vector<scoped_ptr<URLRequestInterceptor>> url_request_interceptors_; | 308 std::vector<scoped_ptr<URLRequestInterceptor>> url_request_interceptors_; |
| 310 scoped_ptr<HttpServerProperties> http_server_properties_; | 309 scoped_ptr<HttpServerProperties> http_server_properties_; |
| 311 | 310 |
| 312 DISALLOW_COPY_AND_ASSIGN(URLRequestContextBuilder); | 311 DISALLOW_COPY_AND_ASSIGN(URLRequestContextBuilder); |
| 313 }; | 312 }; |
| 314 | 313 |
| 315 } // namespace net | 314 } // namespace net |
| 316 | 315 |
| 317 #endif // NET_URL_REQUEST_URL_REQUEST_CONTEXT_BUILDER_H_ | 316 #endif // NET_URL_REQUEST_URL_REQUEST_CONTEXT_BUILDER_H_ |
| OLD | NEW |