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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 bool enable_spdy31; | 87 bool enable_spdy31; |
88 bool enable_http2; | 88 bool enable_http2; |
89 std::string trusted_spdy_proxy; | |
90 bool parse_alternative_services; | 89 bool parse_alternative_services; |
91 bool enable_alternative_service_with_different_host; | 90 bool enable_alternative_service_with_different_host; |
92 bool enable_quic; | 91 bool enable_quic; |
93 int quic_max_server_configs_stored_in_properties; | 92 int quic_max_server_configs_stored_in_properties; |
94 bool quic_delay_tcp_race; | 93 bool quic_delay_tcp_race; |
95 int quic_max_number_of_lossy_connections; | 94 int quic_max_number_of_lossy_connections; |
96 std::unordered_set<std::string> quic_host_whitelist; | 95 std::unordered_set<std::string> quic_host_whitelist; |
97 float quic_packet_loss_threshold; | 96 float quic_packet_loss_threshold; |
98 int quic_idle_connection_timeout_seconds; | 97 int quic_idle_connection_timeout_seconds; |
99 QuicTagVector quic_connection_options; | 98 QuicTagVector quic_connection_options; |
(...skipping 208 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 |