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

Unified Diff: chrome/browser/ui/startup/startup_browser_creator_impl.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
Index: chrome/browser/ui/startup/startup_browser_creator_impl.cc
diff --git a/chrome/browser/ui/startup/startup_browser_creator_impl.cc b/chrome/browser/ui/startup/startup_browser_creator_impl.cc
index 523df9ba8843b4db9f8a8a4d7e280b70193e8e1b..01c08230efe8686dc04f39306f04dac5a92cfaa9 100644
--- a/chrome/browser/ui/startup/startup_browser_creator_impl.cc
+++ b/chrome/browser/ui/startup/startup_browser_creator_impl.cc
@@ -598,8 +598,8 @@ void StartupBrowserCreatorImpl::ProcessLaunchURLs(
return;
} else if (!command_line_.HasSwitch(switches::kOpenInNewWindow)) {
// Always open a list of urls in a window on the native desktop.
- browser = browser::FindTabbedBrowser(profile_, false,
- chrome::HOST_DESKTOP_TYPE_NATIVE);
+ browser = chrome::FindTabbedBrowser(profile_, false,
+ chrome::HOST_DESKTOP_TYPE_NATIVE);
}
// This will launch a browser; prevent session restore.
StartupBrowserCreator::in_synchronous_profile_launch_ = true;

Powered by Google App Engine
This is Rietveld 408576698