From 9f2a9d72b4bc9d23e3050628557f5361189aae15 Mon Sep 17 00:00:00 2001 From: "avi@chromium.org" Date: Mon, 16 Apr 2012 16:02:22 +0000 Subject: TabContents -> WebContentsImpl, part 13. Remove the TabContents typedef. BUG=105875 TEST=no change Review URL: http://codereview.chromium.org/10082021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132410 0039d316-1c4b-4281-b951-d872f2087c98 --- content/browser/web_contents/web_contents_impl.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'content/browser/web_contents/web_contents_impl.cc') diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc index 4fb699e..1cea561 100644 --- a/content/browser/web_contents/web_contents_impl.cc +++ b/content/browser/web_contents/web_contents_impl.cc @@ -1772,9 +1772,9 @@ void WebContentsImpl::OnSetSelectedColorInColorChooser(int color_chooser_id, color_chooser_->SetSelectedColor(color); } -void TabContents::OnPepperPluginHung(int plugin_child_id, - const FilePath& path, - bool is_hung) { +void WebContentsImpl::OnPepperPluginHung(int plugin_child_id, + const FilePath& path, + bool is_hung) { if (delegate_) delegate_->PluginHungStatusChanged(this, plugin_child_id, path, is_hung); } -- cgit v1.1