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

Side by Side Diff: sky/shell/library_loader.cc

Issue 893643002: Add a standalone SkyShell.apk for testing (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/android/base_jni_registrar.h" 5 #include "base/android/base_jni_registrar.h"
6 #include "base/android/jni_android.h" 6 #include "base/android/jni_android.h"
7 #include "base/android/jni_registrar.h" 7 #include "base/android/jni_registrar.h"
8 #include "base/android/library_loader/library_loader_hooks.h" 8 #include "base/android/library_loader/library_loader_hooks.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "services/native_viewport/platform_viewport_android.h" 10 #include "sky/shell/sky_main.h"
11 #include "shell/android/android_handler.h"
12 #include "shell/android/keyboard_impl.h"
13 #include "shell/android/mojo_main.h"
14 11
15 namespace { 12 namespace {
16 13
17 base::android::RegistrationMethod kMojoRegisteredMethods[] = { 14 base::android::RegistrationMethod kSkyRegisteredMethods[] = {
18 {"AndroidHandler", mojo::RegisterAndroidHandlerJni}, 15 {"SkyMain", sky::shell::RegisterSkyMain},
19 {"Keyboard", mojo::shell::RegisterKeyboardJni},
20 {"MojoMain", mojo::shell::RegisterMojoMain},
21 {"PlatformViewportAndroid",
22 native_viewport::PlatformViewportAndroid::Register},
23 }; 16 };
24 17
25 bool RegisterMojoJni(JNIEnv* env) { 18 bool RegisterMojoJni(JNIEnv* env) {
26 return RegisterNativeMethods(env, kMojoRegisteredMethods, 19 return RegisterNativeMethods(env, kSkyRegisteredMethods,
27 arraysize(kMojoRegisteredMethods)); 20 arraysize(kSkyRegisteredMethods));
28 } 21 }
29 22
30 } // namespace 23 } // namespace
31 24
32 // This is called by the VM when the shared library is first loaded. 25 // This is called by the VM when the shared library is first loaded.
33 JNI_EXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved) { 26 JNI_EXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved) {
34 base::android::InitVM(vm); 27 base::android::InitVM(vm);
35 JNIEnv* env = base::android::AttachCurrentThread(); 28 JNIEnv* env = base::android::AttachCurrentThread();
36 29
37 if (!base::android::RegisterLibraryLoaderEntryHook(env)) 30 if (!base::android::RegisterLibraryLoaderEntryHook(env))
38 return -1; 31 return -1;
39 32
40 if (!base::android::RegisterJni(env)) 33 if (!base::android::RegisterJni(env))
41 return -1; 34 return -1;
42 35
43 if (!RegisterMojoJni(env)) 36 if (!RegisterMojoJni(env))
44 return -1; 37 return -1;
45 38
46 return JNI_VERSION_1_4; 39 return JNI_VERSION_1_4;
47 } 40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698