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 |