Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1402)

Unified Diff: mash/session/main.cc

Issue 2192263002: MojoMain() -> ServiceMain() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mash/screenlock/main.cc ('k') | mash/task_viewer/main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mash/session/main.cc
diff --git a/mash/session/main.cc b/mash/session/main.cc
index e5a9bd9ea379e966fed5f679a310ab4a0e8e2369..7a45791e43f9dfb0a3e35e009809bc70447d3d42 100644
--- a/mash/session/main.cc
+++ b/mash/session/main.cc
@@ -3,10 +3,10 @@
// found in the LICENSE file.
#include "mash/session/session.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::session::Session);
- return runner.Run(shell_handle);
+ return runner.Run(service_request_handle);
}
« no previous file with comments | « mash/screenlock/main.cc ('k') | mash/task_viewer/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698