| Index: ash/touch_hud/mus/main.cc
|
| diff --git a/ash/touch_hud/mus/main.cc b/ash/touch_hud/mus/main.cc
|
| index 3a11600fa5a94bb77c075e92dde150b3ac8f9e87..3af1c789ec7f24d6abeb1187549121671a7ec988 100644
|
| --- a/ash/touch_hud/mus/main.cc
|
| +++ b/ash/touch_hud/mus/main.cc
|
| @@ -3,11 +3,11 @@
|
| // found in the LICENSE file.
|
|
|
| #include "ash/touch_hud/mus/touch_hud_application.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 ash::touch_hud::TouchHudApplication);
|
| runner.set_message_loop_type(base::MessageLoop::TYPE_UI);
|
| - return runner.Run(shell_handle);
|
| + return runner.Run(service_request_handle);
|
| }
|
|
|