OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
mnaganov (inactive)
2014/11/05 22:38:49
2014
SeRya
2014/11/06 06:42:46
Done.
| |
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 "base/android/base_jni_registrar.h" | |
6 #include "base/android/jni_android.h" | |
7 #include "base/android/library_loader/library_loader_hooks.h" | |
8 #include "components/devtools_bridge/android/session_dependency_factory_native.h " | |
9 | |
10 using namespace devtools_bridge::android; | |
11 | |
12 JNI_EXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved) { | |
13 base::android::InitVM(vm); | |
14 JNIEnv* env = base::android::AttachCurrentThread(); | |
15 if (!base::android::RegisterLibraryLoaderEntryHook(env)) { | |
16 return -1; | |
17 } | |
18 if (!base::android::RegisterJni(env)) { | |
19 return -1; | |
20 } | |
21 | |
22 SessionDependencyFactoryNative::RegisterNatives(env); | |
23 return JNI_VERSION_1_4; | |
24 } | |
OLD | NEW |