Index: content/browser/tab_contents/tab_contents.cc |
=================================================================== |
--- content/browser/tab_contents/tab_contents.cc (revision 95550) |
+++ content/browser/tab_contents/tab_contents.cc (working copy) |
@@ -1002,7 +1002,7 @@ |
void TabContents::OnDidDisplayInsecureContent() { |
UserMetrics::RecordAction(UserMetricsAction("SSL.DisplayedInsecureContent")); |
displayed_insecure_content_ = true; |
- SSLManager::NotifySSLInternalStateChanged(&controller()); |
+ SSLManager::NotifySSLInternalStateChanged(); |
} |
void TabContents::OnDidRunInsecureContent( |
@@ -1016,7 +1016,7 @@ |
} |
controller_.ssl_manager()->DidRunInsecureContent(security_origin); |
displayed_insecure_content_ = true; |
- SSLManager::NotifySSLInternalStateChanged(&controller()); |
+ SSLManager::NotifySSLInternalStateChanged(); |
} |
void TabContents::OnDocumentLoadedInFrame(int64 frame_id) { |