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

Side by Side Diff: mojo/services/html_viewer/android/android_hooks.cc

Issue 1099303002: Move html_viewer from mojo/services to components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 8 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include <vector>
6
7 #include "base/android/base_jni_onload.h"
8 #include "base/android/jni_android.h"
9 #include "base/android/library_loader/library_loader_hooks.h"
10 #include "base/bind.h"
11 #include "mojo/services/html_viewer/jni/Main_jni.h"
12
13 namespace {
14 bool RegisterJNI(JNIEnv* env) {
15 return true;
16 }
17
18 bool Init() {
19 Java_Main_init(base::android::AttachCurrentThread(),
20 base::android::GetApplicationContext());
21 return true;
22 }
23 } // namespace
24
25 // This is called by the VM when the shared library is first loaded.
26 JNI_EXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved) {
27 std::vector<base::android::RegisterCallback> register_callbacks;
28 register_callbacks.push_back(base::Bind(&RegisterJNI));
29 register_callbacks.push_back(base::Bind(&RegisterNativesImpl));
30
31 std::vector<base::android::InitCallback> init_callbacks;
32 init_callbacks.push_back(base::Bind(&Init));
33
34 if (!base::android::OnJNIOnLoadRegisterJNI(vm, register_callbacks) ||
35 !base::android::OnJNIOnLoadInit(init_callbacks)) {
36 return -1;
37 }
38
39 // There cannot be two AtExitManagers at the same time. Remove the one from
40 // LibraryLoader as ApplicationRunnerChromium also uses one.
41 base::android::LibraryLoaderExitHook();
42
43 return JNI_VERSION_1_4;
44 }
45
46 extern "C" JNI_EXPORT void InitApplicationContext(
47 const base::android::JavaRef<jobject>& context) {
48 JNIEnv* env = base::android::AttachCurrentThread();
49 base::android::InitApplicationContext(env, context);
50 }
OLDNEW
« no previous file with comments | « mojo/services/html_viewer/OWNERS ('k') | mojo/services/html_viewer/android/java/org/chromium/html_viewer/Main.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698