From 1f5af444f94761190a16ac6088ad6e6831aeb4a0 Mon Sep 17 00:00:00 2001 From: "brettw@google.com" Date: Thu, 25 Sep 2008 22:11:06 +0000 Subject: Move a bunch of stuff out of WebContents. I removed a bunch of render view host pass-throughs and just made the callers call the render view host directly. I don't think we're trying to isolate the layers to this degree, and WebContents is so big these just added noise. I removed the RenderViewHost->WebContents->SavePackage pass-through by using a delegate that the SavePackage implements (like we already do for find in page). I also noticed some file upload stuff wasn't used at all and removed it. Review URL: http://codereview.chromium.org/4088 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2612 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/ssl_manager.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'chrome/browser/ssl_manager.cc') diff --git a/chrome/browser/ssl_manager.cc b/chrome/browser/ssl_manager.cc index 94bc42e..4575e5f 100644 --- a/chrome/browser/ssl_manager.cc +++ b/chrome/browser/ssl_manager.cc @@ -196,7 +196,8 @@ void SSLManager::AddMessageToConsole(const std::wstring& msg, if (!web_contents) return; - web_contents->AddMessageToConsole(std::wstring(), msg, level); + web_contents->render_view_host()->AddMessageToConsole( + std::wstring(), msg, level); } // Delegate API method. -- cgit v1.1