Remove include for DevToolsUI class which is no longer used in this file
[chromium-blink-merge.git] / chrome / app / android / chrome_jni_onload.cc
bloba2052da67673cae567b48547170c97d0e460c3fd
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 std::vector<base::android::RegisterCallback> register_callbacks;
28 register_callbacks.push_back(base::Bind(&RegisterJNI));
29 std::vector<base::android::InitCallback> init_callbacks;
30 init_callbacks.push_back(base::Bind(&Init));
31 if (!content::android::OnJNIOnLoadRegisterJNI(vm, register_callbacks) ||
32 !content::android::OnJNIOnLoadInit(init_callbacks)) {
33 return -1;
35 return JNI_VERSION_1_4;