| Index: mash/screenlock/main.cc
|
| diff --git a/mash/screenlock/main.cc b/mash/screenlock/main.cc
|
| index 74bd363fd48deb42d2533875bcf6bdb54375d0f4..54a33549a91b8d7691297775c30866bb86fc0208 100644
|
| --- a/mash/screenlock/main.cc
|
| +++ b/mash/screenlock/main.cc
|
| @@ -3,10 +3,10 @@
|
| // found in the LICENSE file.
|
|
|
| #include "mash/screenlock/screenlock.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::screenlock::Screenlock);
|
| - return runner.Run(shell_handle);
|
| + return runner.Run(service_request_handle);
|
| }
|
|
|