| Index: chrome/browser/android/chrome_entry_point.cc
|
| diff --git a/chrome/browser/android/chrome_entry_point.cc b/chrome/browser/android/chrome_entry_point.cc
|
| index 5bc9215ded3a07c1f0967cfd1f5461d7ffd50081..59a2365b27b9ff20c2ed9dc7913aad5e505918b8 100644
|
| --- a/chrome/browser/android/chrome_entry_point.cc
|
| +++ b/chrome/browser/android/chrome_entry_point.cc
|
| @@ -9,23 +9,15 @@
|
|
|
| namespace {
|
|
|
| -bool RegisterJNI(JNIEnv* env) {
|
| - return true;
|
| -}
|
| -
|
| -bool Init() {
|
| - return true;
|
| -}
|
| -
|
| bool NativeInit() {
|
| - return android::OnJNIOnLoadInit(base::Bind(&Init));
|
| + return android::OnJNIOnLoadInit();
|
| }
|
|
|
| } // namespace
|
|
|
| // This is called by the VM when the shared library is first loaded.
|
| JNI_EXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved) {
|
| - if (!android::OnJNIOnLoadRegisterJNI(vm, base::Bind(&RegisterJNI))) {
|
| + if (!android::OnJNIOnLoadRegisterJNI(vm)) {
|
| return -1;
|
| }
|
| base::android::SetNativeInitializationHook(NativeInit);
|
|
|