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

Unified Diff: chrome/browser/chromeos/net/cert_verify_proc_chromeos.cc

Issue 1081913003: Route OCSP stapling through CertVerifier. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@boringnss
Patch Set: yet another CrOS-only Verify call 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: chrome/browser/chromeos/net/cert_verify_proc_chromeos.cc
diff --git a/chrome/browser/chromeos/net/cert_verify_proc_chromeos.cc b/chrome/browser/chromeos/net/cert_verify_proc_chromeos.cc
index be4621e23c345e7da66b2c22b953f0a6d55f1495..59f6a5b3f056f2b7f202b4ed5799c685a9b33f9c 100644
--- a/chrome/browser/chromeos/net/cert_verify_proc_chromeos.cc
+++ b/chrome/browser/chromeos/net/cert_verify_proc_chromeos.cc
@@ -40,6 +40,7 @@ CertVerifyProcChromeOS::~CertVerifyProcChromeOS() {}
int CertVerifyProcChromeOS::VerifyInternal(
net::X509Certificate* cert,
const std::string& hostname,
+ const std::string& ocsp_response,
int flags,
net::CRLSet* crl_set,
const net::CertificateList& additional_trust_anchors,
@@ -52,12 +53,8 @@ int CertVerifyProcChromeOS::VerifyInternal(
chain_verify_callback.isChainValidArg =
static_cast<void*>(&chain_verify_args);
- return VerifyInternalImpl(cert,
- hostname,
- flags,
- crl_set,
- additional_trust_anchors,
- &chain_verify_callback,
+ return VerifyInternalImpl(cert, hostname, ocsp_response, flags, crl_set,
+ additional_trust_anchors, &chain_verify_callback,
verify_result);
}

Powered by Google App Engine
This is Rietveld 408576698