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