| Index: chrome/browser/android/monochrome_entry_point.cc
|
| diff --git a/chrome/browser/android/monochrome_entry_point.cc b/chrome/browser/android/monochrome_entry_point.cc
|
| index 7a04309c33c0487a927be986397158be35dc8ab1..be2abcb8c55ecf5f37a31f0539f0fc39216650b3 100644
|
| --- a/chrome/browser/android/monochrome_entry_point.cc
|
| +++ b/chrome/browser/android/monochrome_entry_point.cc
|
| @@ -10,10 +10,6 @@
|
|
|
| namespace {
|
|
|
| -bool Init() {
|
| - return true;
|
| -}
|
| -
|
| bool NativeInit() {
|
| JNIEnv* env = base::android::AttachCurrentThread();
|
| int library_process_type = base::android::GetLibraryProcessType(env);
|
| @@ -24,7 +20,7 @@ bool NativeInit() {
|
| break;
|
| case base::android::PROCESS_BROWSER:
|
| case base::android::PROCESS_CHILD:
|
| - return android::OnJNIOnLoadInit(base::Bind(&Init));
|
| + return android::OnJNIOnLoadInit();
|
| break;
|
| default:
|
| NOTREACHED();
|
|
|