| Index: android_webview/browser/aw_ssl_host_state_delegate.cc
|
| diff --git a/android_webview/browser/aw_ssl_host_state_delegate.cc b/android_webview/browser/aw_ssl_host_state_delegate.cc
|
| index 1da47472fb4b38f3fed193c2e519d409fdfbfd40..d6bc5899c66d986b24887084f7d4414b1b0bd2ba 100644
|
| --- a/android_webview/browser/aw_ssl_host_state_delegate.cc
|
| +++ b/android_webview/browser/aw_ssl_host_state_delegate.cc
|
| @@ -66,6 +66,19 @@ bool AwSSLHostStateDelegate::DidHostRunInsecureContent(const std::string& host,
|
| return false;
|
| }
|
|
|
| +void AwSSLHostStateDelegate::HostRanContentWithCertificateErrors(
|
| + const std::string& host,
|
| + int pid) {
|
| + // Intentional no-op for Android WebView.
|
| +}
|
| +
|
| +bool AwSSLHostStateDelegate::DidHostRunContentWithCertificateErrors(
|
| + const std::string& host,
|
| + int pid) const {
|
| + // Intentional no-op for Android WebView.
|
| + return false;
|
| +}
|
| +
|
| void AwSSLHostStateDelegate::AllowCert(const std::string& host,
|
| const net::X509Certificate& cert,
|
| net::CertStatus error) {
|
|
|