diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/base/x509_certificate.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/net/base/x509_certificate.cc b/net/base/x509_certificate.cc index 443ef81..4a7a9e4 100644 --- a/net/base/x509_certificate.cc +++ b/net/base/x509_certificate.cc @@ -184,5 +184,13 @@ X509Certificate::~X509Certificate() { FreeOSCertHandle(cert_handle_); } +#if defined(OS_LINUX) +// TODO(port): Implement properly on Linux. +bool X509Certificate::IsEV(int status) const { + NOTIMPLEMENTED(); + return true; +} +#endif + } // namespace net |