| Index: content/app/android/library_loader_hooks.cc
|
| diff --git a/content/app/android/library_loader_hooks.cc b/content/app/android/library_loader_hooks.cc
|
| index 67ed6c1311deffa2263ef05664a6168155a30f12..9af580e273e256b087aeacc356cb4f0b67fbbf07 100644
|
| --- a/content/app/android/library_loader_hooks.cc
|
| +++ b/content/app/android/library_loader_hooks.cc
|
| @@ -18,6 +18,7 @@
|
| #include "base/tracked_objects.h"
|
| #include "content/app/android/app_jni_registrar.h"
|
| #include "content/browser/android/browser_jni_registrar.h"
|
| +#include "content/child/android/child_jni_registrar.h"
|
| #include "content/common/android/command_line.h"
|
| #include "content/common/android/common_jni_registrar.h"
|
| #include "content/public/common/content_switches.h"
|
| @@ -86,6 +87,9 @@ static jint LibraryLoaded(JNIEnv* env, jclass clazz,
|
| if (!ui::shell_dialogs::RegisterJni(env))
|
| return RESULT_CODE_FAILED_TO_REGISTER_JNI;
|
|
|
| + if (!content::android::RegisterChildJni(env))
|
| + return RESULT_CODE_FAILED_TO_REGISTER_JNI;
|
| +
|
| if (!content::android::RegisterCommonJni(env))
|
| return RESULT_CODE_FAILED_TO_REGISTER_JNI;
|
|
|
|
|