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..90ba40d7187439676e34ee9929d8f98f227b825b 100644 |
--- a/content/browser/ssl/ssl_policy_backend.cc |
+++ b/content/browser/ssl/ssl_policy_backend.cc |
@@ -31,6 +31,17 @@ 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); |
+} |
+ |
+bool SSLPolicyBackend::HasAllowException(const std::string& host) { |
davidben
2015/04/21 18:09:00
Should this account for a NULL delegate? The other
jww
2015/04/21 18:18:15
Yikes! Yup.
|
+ return ssl_host_state_delegate_->HasAllowException(host); |
+} |
+ |
void SSLPolicyBackend::AllowCertForHost(const net::X509Certificate& cert, |
const std::string& host, |
net::CertStatus error) { |