| Index: chrome/browser/ssl/ssl_manager.cc
|
| ===================================================================
|
| --- chrome/browser/ssl/ssl_manager.cc (revision 11853)
|
| +++ chrome/browser/ssl/ssl_manager.cc (working copy)
|
| @@ -208,11 +208,11 @@
|
| }
|
|
|
| bool SSLManager::CanShowInsecureContent(const GURL& url) {
|
| - return ssl_host_state_->CanShowInsecureContent(url);
|
| + return ssl_host_state_->DidAllowMixedContentForHost(url.host());
|
| }
|
|
|
| void SSLManager::AllowShowInsecureContentForURL(const GURL& url) {
|
| - ssl_host_state_->AllowShowInsecureContentForURL(url);
|
| + ssl_host_state_->DidAllowMixedContentForHost(url.host());
|
| }
|
|
|
| bool SSLManager::ProcessedSSLErrorFromRequest() const {
|
|
|