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

Unified Diff: services/clipboard/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
« no previous file with comments | « services/android/java_handler.cc ('k') | services/console/console.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/clipboard/main.cc
diff --git a/services/clipboard/main.cc b/services/clipboard/main.cc
index 37712c616c86f28041c2dde996ea48f2ab32c961..2a2a6584bcb1c4e6cc863e67d17d24d5ee88d102 100644
--- a/services/clipboard/main.cc
+++ b/services/clipboard/main.cc
@@ -31,7 +31,7 @@ class Delegate : public mojo::ApplicationDelegate,
}
};
-MojoResult MojoMain(MojoHandle shell_handle) {
+MojoResult MojoMain(MojoHandle application_request) {
mojo::ApplicationRunnerChromium runner(new Delegate);
- return runner.Run(shell_handle);
+ return runner.Run(application_request);
}
« no previous file with comments | « services/android/java_handler.cc ('k') | services/console/console.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698