Index: services/ui/main.cc |
diff --git a/services/ui/main.cc b/services/ui/main.cc |
index 59a9c56acc790d9e570508f7b2d9d6e51132a27e..7200d45b7b6ebb121f8e95b31d9675bb236bd509 100644 |
--- a/services/ui/main.cc |
+++ b/services/ui/main.cc |
@@ -2,12 +2,12 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "mojo/public/c/system/main.h" |
+#include "services/shell/public/c/main.h" |
#include "services/shell/public/cpp/service_runner.h" |
#include "services/ui/service.h" |
-MojoResult MojoMain(MojoHandle shell_handle) { |
+MojoResult ServiceMain(MojoHandle service_request_handle) { |
shell::ServiceRunner runner(new ui::Service); |
runner.set_message_loop_type(base::MessageLoop::TYPE_UI); |
- return runner.Run(shell_handle); |
+ return runner.Run(service_request_handle); |
} |