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

Unified Diff: content/browser/renderer_host/pepper_message_filter.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
Index: content/browser/renderer_host/pepper_message_filter.cc
===================================================================
--- content/browser/renderer_host/pepper_message_filter.cc (revision 128056)
+++ content/browser/renderer_host/pepper_message_filter.cc (working copy)
@@ -167,7 +167,7 @@
net::CertVerifier* PepperMessageFilter::GetCertVerifier() {
if (!cert_verifier_.get())
- cert_verifier_.reset(new net::CertVerifier());
+ cert_verifier_.reset(net::CertVerifier::CreateDefault());
return cert_verifier_.get();
}
« no previous file with comments | « chrome/service/net/service_url_request_context.cc ('k') | content/shell/shell_url_request_context_getter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698