| Index: mash/session/main.cc
|
| diff --git a/mash/session/main.cc b/mash/session/main.cc
|
| index e5a9bd9ea379e966fed5f679a310ab4a0e8e2369..7a45791e43f9dfb0a3e35e009809bc70447d3d42 100644
|
| --- a/mash/session/main.cc
|
| +++ b/mash/session/main.cc
|
| @@ -3,10 +3,10 @@
|
| // found in the LICENSE file.
|
|
|
| #include "mash/session/session.h"
|
| -#include "mojo/public/c/system/main.h"
|
| +#include "services/shell/public/c/main.h"
|
| #include "services/shell/public/cpp/service_runner.h"
|
|
|
| -MojoResult MojoMain(MojoHandle shell_handle) {
|
| +MojoResult ServiceMain(MojoHandle service_request_handle) {
|
| shell::ServiceRunner runner(new mash::session::Session);
|
| - return runner.Run(shell_handle);
|
| + return runner.Run(service_request_handle);
|
| }
|
|
|