Index: chrome/browser/ui/startup/startup_browser_creator_browsertest.cc |
diff --git a/chrome/browser/ui/startup/startup_browser_creator_browsertest.cc b/chrome/browser/ui/startup/startup_browser_creator_browsertest.cc |
index e5a280543a0d81a9e7706cb24b359618d88ae3db..092409c178d65b2bbfc7fdc756193f8e987d87ef 100644 |
--- a/chrome/browser/ui/startup/startup_browser_creator_browsertest.cc |
+++ b/chrome/browser/ui/startup/startup_browser_creator_browsertest.cc |
@@ -225,7 +225,7 @@ IN_PROC_BROWSER_TEST_F(StartupBrowserCreatorTest, |
urls.push_back(test_server()->GetURL("files/title2.html")); |
Profile* profile = browser()->profile(); |
- chrome::HostDesktopType host_desktop_type = browser()->host_desktop_type(); |
+ ui::HostDesktopType host_desktop_type = browser()->host_desktop_type(); |
// Set the startup preference to open these URLs. |
SessionStartupPref pref(SessionStartupPref::URLS); |
@@ -290,7 +290,7 @@ IN_PROC_BROWSER_TEST_F(StartupBrowserCreatorTest, |
// time. Both the original browser created by the fixture and the one |
// created above have been closed, so the new browser is the only one |
// remaining. |
- new_browser = FindTabbedBrowser(profile, true, host_desktop_type); |
+ new_browser = chrome::FindTabbedBrowser(profile, true, host_desktop_type); |
ASSERT_TRUE(new_browser); |
ASSERT_EQ(static_cast<int>(urls.size()), |
new_browser->tab_strip_model()->count()); |
@@ -960,8 +960,7 @@ IN_PROC_BROWSER_TEST_F(StartupBrowserCreatorTest, |
CloseBrowserAsynchronously(browser_last); |
// Close the main browser. |
- chrome::HostDesktopType original_desktop_type = |
- browser()->host_desktop_type(); |
+ ui::HostDesktopType original_desktop_type = browser()->host_desktop_type(); |
CloseBrowserAsynchronously(browser()); |
// Do a simple non-process-startup browser launch. |