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

Unified Diff: services/reaper/main.cc

Issue 1058163002: Replaces |shell_handle| with |application_request| as the name of the parameter to MojoMain(). (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 9 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
Index: services/reaper/main.cc
diff --git a/services/reaper/main.cc b/services/reaper/main.cc
index bbfe3b4af64d75b7817a16e08231842f8432f801..26d5a5c27c09f79eae0a350f8b8795137cd76919 100644
--- a/services/reaper/main.cc
+++ b/services/reaper/main.cc
@@ -6,7 +6,7 @@
#include "mojo/public/c/system/main.h"
#include "services/reaper/reaper_impl.h"
-MojoResult MojoMain(MojoHandle shell_handle) {
+MojoResult MojoMain(MojoHandle application_request) {
mojo::ApplicationRunnerChromium runner(new reaper::ReaperImpl());
- return runner.Run(shell_handle);
+ return runner.Run(application_request);
}
« no previous file with comments | « services/python/content_handler/content_handler_main.cc ('k') | services/surfaces/surfaces_service_application.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698