diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-02 07:43:17 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-02 07:43:17 +0000 |
commit | f7b4b9ee2d8b8bed86723c3193c02890d6d16b68 (patch) | |
tree | cc41832ce30f9554cf7ef8ac937e7312d4413416 /chrome/browser/captive_portal | |
parent | d855453842bc2054e446d94db48649360065a66d (diff) | |
download | chromium_src-f7b4b9ee2d8b8bed86723c3193c02890d6d16b68.zip chromium_src-f7b4b9ee2d8b8bed86723c3193c02890d6d16b68.tar.gz chromium_src-f7b4b9ee2d8b8bed86723c3193c02890d6d16b68.tar.bz2 |
browser: Move FindBrowserWithWebContents() into chrome namespace.
BUG=133088
TBR=ben@chromium.org
Review URL: https://chromiumcodereview.appspot.com/11434074
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170686 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/captive_portal')
-rw-r--r-- | chrome/browser/captive_portal/captive_portal_tab_helper.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/captive_portal/captive_portal_tab_helper.cc b/chrome/browser/captive_portal/captive_portal_tab_helper.cc index 3eeec39..fc7e9d9 100644 --- a/chrome/browser/captive_portal/captive_portal_tab_helper.cc +++ b/chrome/browser/captive_portal/captive_portal_tab_helper.cc @@ -240,7 +240,7 @@ CaptivePortalTabReloader* CaptivePortalTabHelper::GetTabReloaderForTest() { } void CaptivePortalTabHelper::OpenLoginTab() { - Browser* browser = browser::FindBrowserWithWebContents(web_contents_); + Browser* browser = chrome::FindBrowserWithWebContents(web_contents_); // If the Profile doesn't have a tabbed browser window open, do nothing. if (!browser) |