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

Unified Diff: mojo/runner/android/library_loader.cc

Issue 1630823002: Move mojo/runner to mojo/shell/standalone (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 11 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/runner/android/context_init.cc ('k') | mojo/runner/android/main.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/runner/android/library_loader.cc
diff --git a/mojo/runner/android/library_loader.cc b/mojo/runner/android/library_loader.cc
deleted file mode 100644
index b0dd98cd65028c783ff67fb85f9300b051bf439d..0000000000000000000000000000000000000000
--- a/mojo/runner/android/library_loader.cc
+++ /dev/null
@@ -1,46 +0,0 @@
-// Copyright 2013 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/base_jni_onload.h"
-#include "base/android/base_jni_registrar.h"
-#include "base/android/jni_android.h"
-#include "base/android/jni_registrar.h"
-#include "base/bind.h"
-#include "mojo/runner/android/android_handler.h"
-#include "mojo/runner/android/main.h"
-#include "ui/platform_window/android/platform_ime_controller_android.h"
-#include "ui/platform_window/android/platform_window_android.h"
-
-namespace {
-
-base::android::RegistrationMethod kMojoRegisteredMethods[] = {
- {"AndroidHandler", mojo::runner::RegisterAndroidHandlerJni},
- {"PlatformImeControllerAndroid",
- ui::PlatformImeControllerAndroid::Register},
- {"PlatformWindowAndroid", ui::PlatformWindowAndroid::Register},
- {"ShellMain", mojo::runner::RegisterShellMain},
-};
-
-bool RegisterJNI(JNIEnv* env) {
- if (!base::android::RegisterJni(env))
- return false;
-
- return RegisterNativeMethods(env, kMojoRegisteredMethods,
- arraysize(kMojoRegisteredMethods));
-}
-
-} // namespace
-
-// This is called by the VM when the shared library is first loaded.
-JNI_EXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved) {
- std::vector<base::android::RegisterCallback> register_callbacks;
- register_callbacks.push_back(base::Bind(&RegisterJNI));
- if (!base::android::OnJNIOnLoadRegisterJNI(vm, register_callbacks) ||
- !base::android::OnJNIOnLoadInit(
- std::vector<base::android::InitCallback>())) {
- return -1;
- }
-
- return JNI_VERSION_1_4;
-}
« no previous file with comments | « mojo/runner/android/context_init.cc ('k') | mojo/runner/android/main.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698