| Index: net/cert/cert_verify_proc_mac.cc
|
| diff --git a/net/cert/cert_verify_proc_mac.cc b/net/cert/cert_verify_proc_mac.cc
|
| index b84612ba4eecefb3d239f5b284e4df965aeaecc4..d298feebdaf6e95d20020e0f46df862650e3692b 100644
|
| --- a/net/cert/cert_verify_proc_mac.cc
|
| +++ b/net/cert/cert_verify_proc_mac.cc
|
| @@ -476,9 +476,16 @@ bool CertVerifyProcMac::SupportsAdditionalTrustAnchors() const {
|
| return false;
|
| }
|
|
|
| +bool CertVerifyProcMac::SupportsOCSPStapling() const {
|
| + // TODO(rsleevi): Plumb an OCSP response into the Mac system library.
|
| + // https://crbug.com/430714
|
| + return false;
|
| +}
|
| +
|
| int CertVerifyProcMac::VerifyInternal(
|
| X509Certificate* cert,
|
| const std::string& hostname,
|
| + const std::string& ocsp_response,
|
| int flags,
|
| CRLSet* crl_set,
|
| const CertificateList& additional_trust_anchors,
|
|
|