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

Unified Diff: services/android/java_handler.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 | « mojo/tools/package_manager/package_manager.cc ('k') | services/clipboard/main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/android/java_handler.cc
diff --git a/services/android/java_handler.cc b/services/android/java_handler.cc
index 594e77e20bda1810e8661b47de4eb5c710543893..3bbe16b42dc606ac975f8a0bb2e3aac4003f5a8e 100644
--- a/services/android/java_handler.cc
+++ b/services/android/java_handler.cc
@@ -81,9 +81,9 @@ bool RegisterJNI(JNIEnv* env) {
} // namespace
-MojoResult MojoMain(MojoHandle shell_handle) {
+MojoResult MojoMain(MojoHandle application_request) {
mojo::ApplicationRunnerChromium runner(new services::android::JavaHandler());
- return runner.Run(shell_handle);
+ return runner.Run(application_request);
}
JNI_EXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved) {
« no previous file with comments | « mojo/tools/package_manager/package_manager.cc ('k') | services/clipboard/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698