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