| Index: content/browser/ssl/ssl_policy_backend.h
|
| diff --git a/content/browser/ssl/ssl_policy_backend.h b/content/browser/ssl/ssl_policy_backend.h
|
| index 3de34623fe76b234227ea782ed00b2663ae41ad7..77152c95edab086a1c4733518b025b5179a2e961 100644
|
| --- a/content/browser/ssl/ssl_policy_backend.h
|
| +++ b/content/browser/ssl/ssl_policy_backend.h
|
| @@ -27,6 +27,13 @@ class CONTENT_EXPORT SSLPolicyBackend {
|
| // Returns whether the specified host ran insecure content.
|
| bool DidHostRunInsecureContent(const std::string& host, int pid) const;
|
|
|
| + // Records that a host has run content with certificate errors.
|
| + void HostRanContentWithCertificateErrors(const std::string& host, int pid);
|
| +
|
| + // Returns whether the specified host ran content with certificate errors.
|
| + bool DidHostRunContentWithCertificateErrors(const std::string& host,
|
| + int pid) const;
|
| +
|
| // Revokes all allow exceptions by the user for |host|.
|
| void RevokeUserAllowExceptions(const std::string& host);
|
|
|
|
|