| Index: content/browser/ssl/ssl_policy.h
|
| diff --git a/content/browser/ssl/ssl_policy.h b/content/browser/ssl/ssl_policy.h
|
| index 8df01a16e96b43dd213fc0c5ae76be34bbd0dbc9..cca216cf6af233c7add8be1c669d6a05c328a0c4 100644
|
| --- a/content/browser/ssl/ssl_policy.h
|
| +++ b/content/browser/ssl/ssl_policy.h
|
| @@ -34,9 +34,16 @@ class SSLPolicy {
|
| // An error occurred with the certificate in an SSL connection.
|
| void OnCertError(SSLCertErrorHandler* handler);
|
|
|
| + // Updates the policy backend to reflect that |security_origin| has
|
| + // run content loaded over a nonsecure (HTTP) connection.
|
| void DidRunInsecureContent(NavigationEntryImpl* entry,
|
| const GURL& security_origin);
|
|
|
| + // Updates the policy backend to reflect that |security_origin| has
|
| + // run content loaded over HTTPS with certificate errors.
|
| + void DidRunContentWithCertificateErrors(NavigationEntryImpl* entry,
|
| + const GURL& security_origin);
|
| +
|
| // We have started a resource request for |url| with the given |cert_id| and
|
| // |cert_status|.
|
| void OnRequestStarted(const GURL& url,
|
|
|