Index: net/cert/cert_verify_proc_nss.h |
diff --git a/net/cert/cert_verify_proc_nss.h b/net/cert/cert_verify_proc_nss.h |
index f8bb853544e0817200fde60d5ebaacb6cdf5e2b7..aefcd92d3c8b20ad4ae143901f4a38ef6de164e1 100644 |
--- a/net/cert/cert_verify_proc_nss.h |
+++ b/net/cert/cert_verify_proc_nss.h |
@@ -5,6 +5,8 @@ |
#ifndef NET_CERT_CERT_VERIFY_PROC_NSS_H_ |
#define NET_CERT_CERT_VERIFY_PROC_NSS_H_ |
+#include <certt.h> |
+ |
#include "net/base/net_export.h" |
#include "net/cert/cert_verify_proc.h" |
@@ -14,6 +16,7 @@ namespace net { |
class NET_EXPORT_PRIVATE CertVerifyProcNSS : public CertVerifyProc { |
public: |
CertVerifyProcNSS(); |
+ explicit CertVerifyProcNSS(CERTChainVerifyCallback* chain_verify_callback); |
Ryan Sleevi
2014/01/22 00:46:59
Documentation.
mattm
2014/01/24 04:47:31
Done.
|
virtual bool SupportsAdditionalTrustAnchors() const OVERRIDE; |
@@ -27,6 +30,8 @@ class NET_EXPORT_PRIVATE CertVerifyProcNSS : public CertVerifyProc { |
CRLSet* crl_set, |
const CertificateList& additional_trust_anchors, |
CertVerifyResult* verify_result) OVERRIDE; |
+ |
+ CERTChainVerifyCallback* chain_verify_callback_; |
}; |
} // namespace net |