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

Unified Diff: mojo/shell/standalone/desktop/main_helper.cc

Issue 1714753002: 7/ Eliminate on_application_end from ConnectParams (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@client_request
Patch Set: . Created 4 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
« no previous file with comments | « mojo/shell/standalone/desktop/main_helper.h ('k') | mojo/shell/tests/application_manager_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/standalone/desktop/main_helper.cc
diff --git a/mojo/shell/standalone/desktop/main_helper.cc b/mojo/shell/standalone/desktop/main_helper.cc
index 062e036037fb25f0894477b7346d14a51a7e9e2c..abbf6c283fa5f3dca15f6b1b777be8dbc8282830 100644
--- a/mojo/shell/standalone/desktop/main_helper.cc
+++ b/mojo/shell/standalone/desktop/main_helper.cc
@@ -28,10 +28,7 @@
namespace mojo {
namespace shell {
-int StandaloneShellMain(int argc,
- char** argv,
- const GURL& mojo_url,
- const base::Closure& callback) {
+int StandaloneShellMain(int argc, char** argv) {
base::CommandLine::Init(argc, argv);
const base::CommandLine& command_line =
*base::CommandLine::ForCurrentProcess();
@@ -47,7 +44,7 @@ int StandaloneShellMain(int argc,
if (command_line.HasSwitch(switches::kChildProcess))
return ChildProcessMain();
- return LauncherProcessMain(mojo_url, callback);
+ return LauncherProcessMain();
}
} // namespace shell
« no previous file with comments | « mojo/shell/standalone/desktop/main_helper.h ('k') | mojo/shell/tests/application_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698