diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-16 16:02:22 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-16 16:02:22 +0000 |
commit | 9f2a9d72b4bc9d23e3050628557f5361189aae15 (patch) | |
tree | 8dec00c546d5bf65e2d9824f2a4251b762bc9337 /content/browser/web_contents/web_contents_impl.cc | |
parent | 2487c45380aaac52a51c7e3e0990126aa6b4e421 (diff) | |
download | chromium_src-9f2a9d72b4bc9d23e3050628557f5361189aae15.zip chromium_src-9f2a9d72b4bc9d23e3050628557f5361189aae15.tar.gz chromium_src-9f2a9d72b4bc9d23e3050628557f5361189aae15.tar.bz2 |
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
Diffstat (limited to 'content/browser/web_contents/web_contents_impl.cc')
-rw-r--r-- | content/browser/web_contents/web_contents_impl.cc | 6 |
1 files changed, 3 insertions, 3 deletions
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); } |