| Index: content/browser/ssl/ssl_manager.h
|
| diff --git a/content/browser/ssl/ssl_manager.h b/content/browser/ssl/ssl_manager.h
|
| index 82e724b524244e27f6cb909a3d9bd2a4e6c70384..d71e99e443804a2a7a397c8169f767352cde1c3e 100644
|
| --- a/content/browser/ssl/ssl_manager.h
|
| +++ b/content/browser/ssl/ssl_manager.h
|
| @@ -87,9 +87,14 @@ class CONTENT_EXPORT SSLManager {
|
| void DidStartResourceResponse(const ResourceRequestDetails& details);
|
| void DidReceiveResourceRedirect(const ResourceRedirectDetails& details);
|
|
|
| - // Insecure content entry point.
|
| + // Notifies SSLPolicy that the given |security_origin| has run content
|
| + // loaded over HTTP.
|
| void DidRunInsecureContent(const GURL& security_origin);
|
|
|
| + // Notifies SSLPolicy that the given |security_origin| has run content
|
| + // loaded over HTTPS with certificate errors.
|
| + void DidRunContentWithCertificateErrors(const GURL& security_origin);
|
| +
|
| private:
|
| // Updates the NavigationEntry with our current state. This will
|
| // notify the WebContents of an SSL state change if a change was
|
|
|