diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-26 19:06:17 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-26 19:06:17 +0000 |
commit | 768c547ef7c680bcfcf2616bf6e833849aea6db1 (patch) | |
tree | 6264e6274a36648ac8b5af51d2d02fc38dff5b2c /chrome/browser/plugin_observer.cc | |
parent | c95c0219b5d1ea69f824c9b98d63919cba7ccd10 (diff) | |
download | chromium_src-768c547ef7c680bcfcf2616bf6e833849aea6db1.zip chromium_src-768c547ef7c680bcfcf2616bf6e833849aea6db1.tar.gz chromium_src-768c547ef7c680bcfcf2616bf6e833849aea6db1.tar.bz2 |
Move most of the remaining users of WebContentsObserver::tab_contents() to use web_contents().
BUG=98716
TBR=joi
Review URL: http://codereview.chromium.org/9030010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115800 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/plugin_observer.cc')
-rw-r--r-- | chrome/browser/plugin_observer.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/plugin_observer.cc b/chrome/browser/plugin_observer.cc index 726355a..61c3fb31 100644 --- a/chrome/browser/plugin_observer.cc +++ b/chrome/browser/plugin_observer.cc @@ -352,9 +352,9 @@ void PluginObserver::DidNotFindMissingPlugin(int placeholder_id, void PluginObserver::InstallMissingPlugin(PluginInstaller* installer) { if (installer->url_for_display()) { - tab_contents()->OpenURL(OpenURLParams( + web_contents()->OpenURL(OpenURLParams( installer->plugin_url(), - content::Referrer(tab_contents()->GetURL(), + content::Referrer(web_contents()->GetURL(), WebKit::WebReferrerPolicyDefault), NEW_FOREGROUND_TAB, content::PAGE_TRANSITION_TYPED, false)); } else { |