Add more checks to investigate SupervisedUserPrefStore crash at startup.
[chromium-blink-merge.git] / chrome / app / android / chrome_jni_onload.cc
blobf0986ae7bc2a5b845fdf8c3adcfff032a549f6b6
1 // Copyright (c) 2012 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.
5 #include "base/android/jni_android.h"
6 #include "base/bind.h"
7 #include "chrome/app/android/chrome_android_initializer.h"
8 #include "content/public/app/content_jni_onload.h"
10 namespace {
12 bool RegisterJNI(JNIEnv* env) {
13 return true;
16 bool Init() {
17 // TODO(michaelbai): Move the JNI registration from RunChrome() to
18 // RegisterJNI().
19 return RunChrome();
22 } // namespace
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 if (!content::android::OnJNIOnLoadRegisterJNI(
28 vm, base::Bind(&RegisterJNI)) ||
29 !content::android::OnJNIOnLoadInit(base::Bind(&Init)))
30 return -1;
32 return JNI_VERSION_1_4;