| Index: net/url_request/url_request_context.h
|
| ===================================================================
|
| --- net/url_request/url_request_context.h (revision 94628)
|
| +++ net/url_request/url_request_context.h (working copy)
|
| @@ -72,14 +72,6 @@
|
| cert_verifier_ = cert_verifier;
|
| }
|
|
|
| - OriginBoundCertService* origin_bound_cert_service() const {
|
| - return origin_bound_cert_service_;
|
| - }
|
| - void set_origin_bound_cert_service(
|
| - OriginBoundCertService* origin_bound_cert_service) {
|
| - origin_bound_cert_service_ = origin_bound_cert_service;
|
| - }
|
| -
|
| DnsRRResolver* dnsrr_resolver() const {
|
| return dnsrr_resolver_;
|
| }
|
| @@ -142,6 +134,12 @@
|
| CookieStore* cookie_store() const { return cookie_store_.get(); }
|
| void set_cookie_store(CookieStore* cookie_store);
|
|
|
| + OriginBoundCertService* origin_bound_cert_service() const {
|
| + return origin_bound_cert_service_.get();
|
| + }
|
| + void set_origin_bound_cert_service(
|
| + OriginBoundCertService* origin_bound_cert_service);
|
| +
|
| TransportSecurityState* transport_security_state() const {
|
| return transport_security_state_;
|
| }
|
| @@ -198,7 +196,6 @@
|
| NetLog* net_log_;
|
| HostResolver* host_resolver_;
|
| CertVerifier* cert_verifier_;
|
| - OriginBoundCertService* origin_bound_cert_service_;
|
| DnsRRResolver* dnsrr_resolver_;
|
| DnsCertProvenanceChecker* dns_cert_checker_;
|
| HttpAuthHandlerFactory* http_auth_handler_factory_;
|
| @@ -206,6 +203,7 @@
|
| scoped_refptr<SSLConfigService> ssl_config_service_;
|
| NetworkDelegate* network_delegate_;
|
| scoped_refptr<CookieStore> cookie_store_;
|
| + scoped_refptr<OriginBoundCertService> origin_bound_cert_service_;
|
| scoped_refptr<TransportSecurityState> transport_security_state_;
|
| scoped_ptr<FtpAuthCache> ftp_auth_cache_;
|
| std::string accept_language_;
|
|
|