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

Unified Diff: mojo/shell/android/bootstrap.cc

Issue 1049993002: Get mojo_shell building inside chromium checkout. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix presubmit 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/shell/android/background_application_loader_unittest.cc ('k') | mojo/shell/android/keyboard_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/android/bootstrap.cc
diff --git a/mojo/shell/android/bootstrap.cc b/mojo/shell/android/bootstrap.cc
new file mode 100644
index 0000000000000000000000000000000000000000..4fcae379f4162ba538f71fbe3b6c2dfcaae1844c
--- /dev/null
+++ b/mojo/shell/android/bootstrap.cc
@@ -0,0 +1,43 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "base/android/jni_android.h"
+#include "base/android/jni_string.h"
+#include "base/files/file_path.h"
+#include "base/logging.h"
+#include "jni/Bootstrap_jni.h"
+#include "mojo/shell/android/run_android_application_function.h"
+
+namespace mojo {
+namespace shell {
+
+void Bootstrap(JNIEnv* env,
+ jobject,
+ jobject j_context,
+ jstring j_native_library_path,
+ jint j_handle,
+ jlong j_run_application_ptr) {
+ base::FilePath app_path(
+ base::android::ConvertJavaStringToUTF8(env, j_native_library_path));
+ RunAndroidApplicationFn run_android_application_fn =
+ reinterpret_cast<RunAndroidApplicationFn>(j_run_application_ptr);
+ run_android_application_fn(env, j_context, app_path, j_handle);
+}
+
+bool RegisterBootstrapJni(JNIEnv* env) {
+ return RegisterNativesImpl(env);
+}
+
+} // namespace shell
+} // namespace mojo
+
+JNI_EXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved) {
+ base::android::InitVM(vm);
+ JNIEnv* env = base::android::AttachCurrentThread();
+
+ if (!mojo::shell::RegisterBootstrapJni(env))
+ return -1;
+
+ return JNI_VERSION_1_4;
+}
« no previous file with comments | « mojo/shell/android/background_application_loader_unittest.cc ('k') | mojo/shell/android/keyboard_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698