| Index: content/public/browser/ssl_host_state_delegate.h
|
| diff --git a/content/public/browser/ssl_host_state_delegate.h b/content/public/browser/ssl_host_state_delegate.h
|
| index b06b40858fedc0f7edc64bf805967f8f558e4dcc..69a4a60667f859f3860d2c0d102c5d642242d4a4 100644
|
| --- a/content/public/browser/ssl_host_state_delegate.h
|
| +++ b/content/public/browser/ssl_host_state_delegate.h
|
| @@ -48,13 +48,23 @@ class SSLHostStateDelegate {
|
| net::CertStatus error,
|
| bool* expired_previous_decision) = 0;
|
|
|
| - // Records that a host has run insecure content.
|
| + // Records that a host has run insecure (HTTP) content.
|
| virtual void HostRanInsecureContent(const std::string& host, int pid) = 0;
|
|
|
| - // Returns whether the specified host ran insecure content.
|
| + // Returns whether the specified host ran insecure (HTTP) content.
|
| virtual bool DidHostRunInsecureContent(const std::string& host,
|
| int pid) const = 0;
|
|
|
| + // Records that a host has run content loaded over HTTPS with certificate
|
| + // errors.
|
| + virtual void HostRanContentWithCertificateErrors(const std::string& host,
|
| + int pid) = 0;
|
| +
|
| + // Returns whether the specified host ran content loaded over HTTPS with
|
| + // certificate errors.
|
| + virtual bool DidHostRunContentWithCertificateErrors(const std::string& host,
|
| + int pid) const = 0;
|
| +
|
| // Revokes all SSL certificate error allow exceptions made by the user for
|
| // |host|.
|
| virtual void RevokeUserAllowExceptions(const std::string& host) = 0;
|
|
|