summaryrefslogtreecommitdiffstats
path: root/mojo/shell/shell_impl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'mojo/shell/shell_impl.cc')
-rw-r--r--mojo/shell/shell_impl.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/mojo/shell/shell_impl.cc b/mojo/shell/shell_impl.cc
index 9fef34b..4214324 100644
--- a/mojo/shell/shell_impl.cc
+++ b/mojo/shell/shell_impl.cc
@@ -27,10 +27,10 @@ ShellImpl::ShellImpl(ApplicationPtr application,
ShellImpl::~ShellImpl() {
}
-void ShellImpl::InitializeApplication(Array<String> args) {
+void ShellImpl::InitializeApplication() {
ShellPtr shell;
binding_.Bind(GetProxy(&shell));
- application_->Initialize(shell.Pass(), args.Pass(), identity_.url.spec());
+ application_->Initialize(shell.Pass(), identity_.url.spec());
}
void ShellImpl::ConnectToClient(const GURL& requested_url,