| Index: content/browser/ssl/ssl_policy_backend.cc
|
| ===================================================================
|
| --- content/browser/ssl/ssl_policy_backend.cc (revision 95567)
|
| +++ content/browser/ssl/ssl_policy_backend.cc (working copy)
|
| @@ -9,13 +9,14 @@
|
| #include "content/browser/tab_contents/navigation_controller.h"
|
|
|
| SSLPolicyBackend::SSLPolicyBackend(NavigationController* controller)
|
| - : ssl_host_state_(controller->browser_context()->GetSSLHostState()) {
|
| - DCHECK(controller);
|
| + : ssl_host_state_(controller->browser_context()->GetSSLHostState()),
|
| + controller_(controller) {
|
| + DCHECK(controller_);
|
| }
|
|
|
| void SSLPolicyBackend::HostRanInsecureContent(const std::string& host, int id) {
|
| ssl_host_state_->HostRanInsecureContent(host, id);
|
| - SSLManager::NotifySSLInternalStateChanged();
|
| + SSLManager::NotifySSLInternalStateChanged(controller_);
|
| }
|
|
|
| bool SSLPolicyBackend::DidHostRunInsecureContent(const std::string& host,
|
|
|