diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-23 22:27:37 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-23 22:27:37 +0000 |
commit | a608d17f9338dc10159d50f81a9f64fcd51c9c80 (patch) | |
tree | 7a3b2220b49c859d1fe96ddb3ead21e51b468bde /chrome/browser/pepper_broker_infobar_delegate.cc | |
parent | b92e740735220100d7b05664b20ef96cc8342a81 (diff) | |
download | chromium_src-a608d17f9338dc10159d50f81a9f64fcd51c9c80.zip chromium_src-a608d17f9338dc10159d50f81a9f64fcd51c9c80.tar.gz chromium_src-a608d17f9338dc10159d50f81a9f64fcd51c9c80.tar.bz2 |
Eliminate InfoBarTabHelper. Make InfoBarService a concrete class.
Most changes here are from inlining and renaming the simple accessors in the
API.
BUG=none
TEST=none
Review URL: https://codereview.chromium.org/14241006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@195922 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/pepper_broker_infobar_delegate.cc')
-rw-r--r-- | chrome/browser/pepper_broker_infobar_delegate.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/pepper_broker_infobar_delegate.cc b/chrome/browser/pepper_broker_infobar_delegate.cc index 597022b..6dfa3e1 100644 --- a/chrome/browser/pepper_broker_infobar_delegate.cc +++ b/chrome/browser/pepper_broker_infobar_delegate.cc @@ -158,7 +158,7 @@ bool PepperBrokerInfoBarDelegate::LinkClicked( (disposition == CURRENT_TAB) ? NEW_FOREGROUND_TAB : disposition, content::PAGE_TRANSITION_LINK, false); - owner()->GetWebContents()->OpenURL(params); + owner()->web_contents()->OpenURL(params); return false; } |