diff options
Diffstat (limited to 'chrome/browser/ssl/ssl_policy.h')
-rw-r--r-- | chrome/browser/ssl/ssl_policy.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/browser/ssl/ssl_policy.h b/chrome/browser/ssl/ssl_policy.h index 48a5f0d..df2e002 100644 --- a/chrome/browser/ssl/ssl_policy.h +++ b/chrome/browser/ssl/ssl_policy.h @@ -30,11 +30,16 @@ class SSLPolicy : public SSLBlockingPage::Delegate { // An error occurred with the certificate in an SSL connection. void OnCertError(SSLCertErrorHandler* handler); + // TODO(abarth) Remove this API once the new mixed content path is done. + // // A request for a mixed-content resource was made. Note that the resource // request was not started yet and the delegate is responsible for starting // it. void OnMixedContent(SSLMixedContentHandler* handler); + void DidDisplayInsecureContent(NavigationEntry* entry); + void DidRunInsecureContent(const std::string& security_origin); + // We have started a resource request with the given info. void OnRequestStarted(SSLRequestInfo* info); |