summaryrefslogtreecommitdiffstats
path: root/jingle
diff options
context:
space:
mode:
authoragl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-07 17:47:27 +0000
committeragl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-07 17:47:27 +0000
commita2a4197d76cfe41bcad28ec1204bb53a360bd3f1 (patch)
tree0aa2be92bc9ab632c33febb219040bb4fb561cd5 /jingle
parent6e5ad865c61adb98f8f5d4c22ecb238478a9a368 (diff)
downloadchromium_src-a2a4197d76cfe41bcad28ec1204bb53a360bd3f1.zip
chromium_src-a2a4197d76cfe41bcad28ec1204bb53a360bd3f1.tar.gz
chromium_src-a2a4197d76cfe41bcad28ec1204bb53a360bd3f1.tar.bz2
net: replace DnsRRResoler with TransportSecurityState in plumbing.
The DnsRRResoler has served its time and I don't have any further plans for it. The TransportSecurityState will be used (in a future CL) to enforce public key pinning at certificate verification time. Currently we only enforce it in url_request_http_job.cc which means that we've already sent the HTTP request (inc cookies) by the time we catch the problem. This was expeditious while we fixed some other issues, but it's time to fix it. BUG=none TEST=compiles Review URL: http://codereview.chromium.org/8692012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113410 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'jingle')
-rw-r--r--jingle/notifier/base/proxy_resolving_client_socket.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/jingle/notifier/base/proxy_resolving_client_socket.cc b/jingle/notifier/base/proxy_resolving_client_socket.cc
index 302a8ed..3d46ed6b 100644
--- a/jingle/notifier/base/proxy_resolving_client_socket.cc
+++ b/jingle/notifier/base/proxy_resolving_client_socket.cc
@@ -48,7 +48,8 @@ ProxyResolvingClientSocket::ProxyResolvingClientSocket(
session_params.cert_verifier = request_context->cert_verifier();
// TODO(rkn): This is NULL because OriginBoundCertService is not thread safe.
session_params.origin_bound_cert_service = NULL;
- session_params.dnsrr_resolver = request_context->dnsrr_resolver();
+ // transport_security_state is NULL because it's not thread safe.
+ session_params.transport_security_state = NULL;
session_params.dns_cert_checker = request_context->dns_cert_checker();
session_params.proxy_service = request_context->proxy_service();
session_params.ssl_host_info_factory = NULL;