Plumb the new mixed content API callbacks to the tab contents.  We'll actually
use these notifications in a future patch.

No behavior change.

R=agl

Review URL: http://codereview.chromium.org/241004

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27249 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/browser/tab_contents/tab_contents.cc b/chrome/browser/tab_contents/tab_contents.cc
index 80a7d8b6..9b82671 100644
--- a/chrome/browser/tab_contents/tab_contents.cc
+++ b/chrome/browser/tab_contents/tab_contents.cc
@@ -1773,6 +1773,14 @@
       Details<LoadFromMemoryCacheDetails>(&details));
 }
 
+void TabContents::DidDisplayInsecureContent() {
+  // TODO(abarth): Update the HTTPS state.
+}
+
+void TabContents::DidRunInsecureContent(const std::string& security_origin) {
+  // TODO(abarth): Update the HTTPS state.
+}
+
 void TabContents::DidFailProvisionalLoadWithError(
     RenderViewHost* render_view_host,
     bool is_main_frame,