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

Unified Diff: net/url_request/url_request_context_storage.cc

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, 4 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_storage.cc
===================================================================
--- net/url_request/url_request_context_storage.cc (revision 94628)
+++ net/url_request/url_request_context_storage.cc (working copy)
@@ -11,6 +11,7 @@
#include "net/base/host_resolver.h"
#include "net/base/net_log.h"
#include "net/base/network_delegate.h"
+#include "net/base/origin_bound_cert_service.h"
#include "net/ftp/ftp_transaction_factory.h"
#include "net/http/http_auth_handler_factory.h"
#include "net/http/http_transaction_factory.h"
@@ -43,6 +44,12 @@
cert_verifier_.reset(cert_verifier);
}
+void URLRequestContextStorage::set_origin_bound_cert_service(
+ OriginBoundCertService* origin_bound_cert_service) {
+ context_->set_origin_bound_cert_service(origin_bound_cert_service);
+ origin_bound_cert_service_.reset(origin_bound_cert_service);
+}
+
void URLRequestContextStorage::set_dnsrr_resolver(
DnsRRResolver* dnsrr_resolver) {
context_->set_dnsrr_resolver(dnsrr_resolver);
« no previous file with comments | « net/url_request/url_request_context_storage.h ('k') | webkit/tools/test_shell/test_shell_request_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698