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

Unified Diff: remoting/protocol/ssl_hmac_channel_authenticator.cc

Issue 9476035: Make CertVerifier a pure virtual interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Win shared fix Created 8 years, 9 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
« no previous file with comments | « remoting/jingle_glue/ssl_socket_adapter.cc ('k') | webkit/tools/test_shell/test_shell_request_context.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/ssl_hmac_channel_authenticator.cc
===================================================================
--- remoting/protocol/ssl_hmac_channel_authenticator.cc (revision 128056)
+++ remoting/protocol/ssl_hmac_channel_authenticator.cc (working copy)
@@ -86,7 +86,7 @@
result = server_socket->Handshake(base::Bind(
&SslHmacChannelAuthenticator::OnConnected, base::Unretained(this)));
} else {
- cert_verifier_.reset(new net::CertVerifier());
+ cert_verifier_.reset(net::CertVerifier::CreateDefault());
net::SSLConfig::CertAndStatus cert_and_status;
cert_and_status.cert_status = net::CERT_STATUS_AUTHORITY_INVALID;
« no previous file with comments | « remoting/jingle_glue/ssl_socket_adapter.cc ('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