Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5914)

Unified Diff: chrome/browser/captive_portal/captive_portal_browsertest.cc

Issue 11779019: browser: Move FindTabbedBrowser() function into chrome namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/chromeos/enrollment_dialog_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/captive_portal/captive_portal_browsertest.cc
diff --git a/chrome/browser/captive_portal/captive_portal_browsertest.cc b/chrome/browser/captive_portal/captive_portal_browsertest.cc
index fe3627125e67964d202cefec994efa942eee4145..255851e177a35c7264e9ccd468bd9203b8ecd453 100644
--- a/chrome/browser/captive_portal/captive_portal_browsertest.cc
+++ b/chrome/browser/captive_portal/captive_portal_browsertest.cc
@@ -2070,8 +2070,8 @@ IN_PROC_BROWSER_TEST_F(CaptivePortalBrowserTest, DISABLED_TwoWindows) {
// when running multiple tests at once, the original browser window may
// remain the profile's active window.
Browser* active_browser =
- browser::FindTabbedBrowser(browser()->profile(), true,
- browser()->host_desktop_type());
+ chrome::FindTabbedBrowser(browser()->profile(), true,
+ browser()->host_desktop_type());
Browser* inactive_browser;
if (active_browser == browser2) {
// When only one test is running at a time, the new browser will probably be
@@ -2100,8 +2100,8 @@ IN_PROC_BROWSER_TEST_F(CaptivePortalBrowserTest, DISABLED_TwoWindows) {
// Make sure the active window hasn't changed, and its new tab is
// active.
ASSERT_EQ(active_browser,
- browser::FindTabbedBrowser(browser()->profile(), true,
- browser()->host_desktop_type()));
+ chrome::FindTabbedBrowser(browser()->profile(), true,
+ browser()->host_desktop_type()));
ASSERT_EQ(1, active_browser->tab_strip_model()->active_index());
// Check that the only two navigated tabs were the new error tab in the
« no previous file with comments | « no previous file | chrome/browser/chromeos/enrollment_dialog_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698