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); |
} |