| Index: net/base/x509_certificate_openssl.cc
|
| diff --git a/net/base/x509_certificate_openssl.cc b/net/base/x509_certificate_openssl.cc
|
| index 68fcf91c2c1c3138f624fb831ba2c4ce51543e5c..f23ede904a0a7c04cd718af9f2d7f33200482623 100644
|
| --- a/net/base/x509_certificate_openssl.cc
|
| +++ b/net/base/x509_certificate_openssl.cc
|
| @@ -425,6 +425,8 @@ X509_STORE* X509Certificate::cert_store() {
|
| return X509InitSingleton::GetInstance()->store();
|
| }
|
|
|
| +#if !defined(OS_ANDROID)
|
| +
|
| int X509Certificate::VerifyInternal(const std::string& hostname,
|
| int flags,
|
| CertVerifyResult* verify_result) const {
|
| @@ -504,6 +506,8 @@ int X509Certificate::VerifyInternal(const std::string& hostname,
|
| return OK;
|
| }
|
|
|
| +#endif // !defined(OS_ANDROID)
|
| +
|
| bool X509Certificate::GetDEREncoded(std::string* encoded) {
|
| DERCache der_cache;
|
| if (!GetDERAndCacheIfNeeded(cert_handle_, &der_cache))
|
|
|