diff options
Diffstat (limited to 'net/base/x509_certificate_mac.cc')
-rw-r--r-- | net/base/x509_certificate_mac.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/net/base/x509_certificate_mac.cc b/net/base/x509_certificate_mac.cc index ac60645..e231653 100644 --- a/net/base/x509_certificate_mac.cc +++ b/net/base/x509_certificate_mac.cc @@ -11,6 +11,7 @@ #include "base/pickle.h" #include "net/base/cert_status_flags.h" #include "net/base/ev_root_ca_metadata.h" +#include "net/base/net_errors.h" using base::Time; @@ -251,6 +252,13 @@ void X509Certificate::GetDNSNames(std::vector<std::string>* dns_names) const { if (dns_names->empty()) dns_names->push_back(subject_.common_name); } + +int X509Certificate::Verify(const std::string& hostname, + bool rev_checking_enabled, + CertVerifyResult* verify_result) const { + NOTIMPLEMENTED(); + return ERR_NOT_IMPLEMENTED; +} // Returns true if the certificate is an extended-validation certificate. // |