Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Unified Diff: net/url_request/url_request_context.h

Issue 7493025: Instantiate OriginBoundCertService in relevant places and do plumbing to pass it down to HttpNetw... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;

Powered by Google App Engine
This is Rietveld 408576698