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

Unified Diff: net/cert/cert_verifier.cc

Issue 1081913003: Route OCSP stapling through CertVerifier. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@boringnss
Patch Set: split remoting fix out separately Created 5 years, 8 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/cert/cert_verifier.cc
diff --git a/net/cert/cert_verifier.cc b/net/cert/cert_verifier.cc
index e4acec4f2886c5792372c11d20114a15bfd85333..d964b9e6bd83245533fa71d8d859173152351643 100644
--- a/net/cert/cert_verifier.cc
+++ b/net/cert/cert_verifier.cc
@@ -9,6 +9,10 @@
namespace net {
+bool CertVerifier::SupportsOCSPStapling() {
+ return false;
+}
+
CertVerifier* CertVerifier::CreateDefault() {
return new MultiThreadedCertVerifier(CertVerifyProc::CreateDefault());
}

Powered by Google App Engine
This is Rietveld 408576698