| 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 a2626dac383d052c985b20d5d7fe6083907ba962..0c23ae02c6fb13904ee1e3191c6096b9da38c7a3 100644
|
| --- a/content/browser/ssl/ssl_policy_backend.cc
|
| +++ b/content/browser/ssl/ssl_policy_backend.cc
|
| @@ -31,6 +31,24 @@ bool SSLPolicyBackend::DidHostRunInsecureContent(const std::string& host,
|
| return ssl_host_state_delegate_->DidHostRunInsecureContent(host, pid);
|
| }
|
|
|
| +void SSLPolicyBackend::HostRanContentWithCertificateErrors(
|
| + const std::string& host,
|
| + int id) {
|
| + if (ssl_host_state_delegate_)
|
| + ssl_host_state_delegate_->HostRanContentWithCertificateErrors(host, id);
|
| + SSLManager::NotifySSLInternalStateChanged(controller_->GetBrowserContext());
|
| +}
|
| +
|
| +bool SSLPolicyBackend::DidHostRunContentWithCertificateErrors(
|
| + const std::string& host,
|
| + int pid) const {
|
| + if (!ssl_host_state_delegate_)
|
| + return false;
|
| +
|
| + return ssl_host_state_delegate_->DidHostRunContentWithCertificateErrors(host,
|
| + pid);
|
| +}
|
| +
|
| void SSLPolicyBackend::RevokeUserAllowExceptions(const std::string& host) {
|
| if (!ssl_host_state_delegate_)
|
| return;
|
|
|