| Index: content/browser/ssl/ssl_policy_backend.cc
|
| diff --git a/content/browser/ssl/ssl_policy_backend.cc b/content/browser/ssl/ssl_policy_backend.cc
|
| index 5c65874821966a32330fe4689d4ef7c36ff9e023..76014979bee704cf80877001da7ee52df3fa5b5e 100644
|
| --- a/content/browser/ssl/ssl_policy_backend.cc
|
| +++ b/content/browser/ssl/ssl_policy_backend.cc
|
| @@ -31,6 +31,13 @@ bool SSLPolicyBackend::DidHostRunInsecureContent(const std::string& host,
|
| return ssl_host_state_delegate_->DidHostRunInsecureContent(host, pid);
|
| }
|
|
|
| +void SSLPolicyBackend::RevokeUserAllowExceptions(const std::string& host) {
|
| + if (!ssl_host_state_delegate_)
|
| + return;
|
| +
|
| + ssl_host_state_delegate_->RevokeUserAllowExceptions(host);
|
| +}
|
| +
|
| void SSLPolicyBackend::AllowCertForHost(const net::X509Certificate& cert,
|
| const std::string& host,
|
| net::CertStatus error) {
|
|
|