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

Side by Side Diff: components/resource_provider/android/android_hooks.cc

Issue 1942473002: Eliminate mojo:resource_provider (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 7 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/context_utils.h"
9 #include "base/android/jni_android.h"
10 #include "base/android/library_loader/library_loader_hooks.h"
11 #include "base/bind.h"
12 #include "components/resource_provider/jni/Main_jni.h"
13
14 namespace {
15 bool RegisterJNI(JNIEnv* env) {
16 return true;
17 }
18
19 bool Init() {
20 return true;
21 }
22 } // namespace
23
24 // This is called by the VM when the shared library is first loaded.
25 JNI_EXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved) {
26 std::vector<base::android::RegisterCallback> register_callbacks;
27 register_callbacks.push_back(base::Bind(&RegisterJNI));
28 register_callbacks.push_back(
29 base::Bind(&resource_provider::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 ApplicationRunner 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 resource_provider::Java_Main_init(
50 env, base::android::GetApplicationContext());
51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698