Index: mash/init/main.cc |
diff --git a/mash/init/main.cc b/mash/init/main.cc |
index 5add326220610acd5ea7301c654d7f91189e7783..c1b3107d871c22918503483f312f3bb18b5f995e 100644 |
--- a/mash/init/main.cc |
+++ b/mash/init/main.cc |
@@ -3,10 +3,10 @@ |
// found in the LICENSE file. |
#include "mash/init/init.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::init::Init); |
- return runner.Run(shell_handle); |
+ return runner.Run(service_request_handle); |
} |