| Index: services/shell/tests/shutdown/shutdown_service_app.cc
|
| diff --git a/services/shell/tests/shutdown/shutdown_service_app.cc b/services/shell/tests/shutdown/shutdown_service_app.cc
|
| index db4381e2d53d1a59468ea7be22aad19150961f48..b5db4fb48437fb003b6f2931d57ec0f089eba915 100644
|
| --- a/services/shell/tests/shutdown/shutdown_service_app.cc
|
| +++ b/services/shell/tests/shutdown/shutdown_service_app.cc
|
| @@ -3,8 +3,8 @@
|
| // found in the LICENSE file.
|
|
|
| #include "base/macros.h"
|
| -#include "mojo/public/c/system/main.h"
|
| #include "mojo/public/cpp/bindings/binding_set.h"
|
| +#include "services/shell/public/c/main.h"
|
| #include "services/shell/public/cpp/service.h"
|
| #include "services/shell/public/cpp/service_runner.h"
|
| #include "services/shell/tests/shutdown/shutdown_unittest.mojom.h"
|
| @@ -48,8 +48,8 @@ class ShutdownServiceApp
|
| } // namespace shell
|
|
|
|
|
| -MojoResult MojoMain(MojoHandle shell_handle) {
|
| +MojoResult ServiceMain(MojoHandle service_request_handle) {
|
| shell::ServiceRunner runner(new shell::ShutdownServiceApp);
|
| shell::g_app = &runner;
|
| - return runner.Run(shell_handle);
|
| + return runner.Run(service_request_handle);
|
| }
|
|
|