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