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

Unified Diff: chrome/browser/profiles/profile_window.cc

Issue 896053002: Cleanup: Remove an unused parameter in StartupBrowserCreator. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 10 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/profiles/profile_window.cc
diff --git a/chrome/browser/profiles/profile_window.cc b/chrome/browser/profiles/profile_window.cc
index 9b85dffd5033d81ddf137be9bae70682cdd37f88..4bb0f38bdb3e261bed828822522d9630dcd7dff0 100644
--- a/chrome/browser/profiles/profile_window.cc
+++ b/chrome/browser/profiles/profile_window.cc
@@ -262,10 +262,9 @@ void FindOrCreateNewWindowForProfile(
content::RecordAction(UserMetricsAction("NewWindow"));
base::CommandLine command_line(base::CommandLine::NO_PROGRAM);
- int return_code;
StartupBrowserCreator browser_creator;
- browser_creator.LaunchBrowser(command_line, profile, base::FilePath(),
- process_startup, is_first_run, &return_code);
+ browser_creator.LaunchBrowser(
+ command_line, profile, base::FilePath(), process_startup, is_first_run);
#endif // defined(OS_IOS)
}

Powered by Google App Engine
This is Rietveld 408576698