Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3730)

Unified Diff: chrome/browser/android/monochrome_entry_point.cc

Issue 2620303004: Remove JNI onload callback vector construction in favour of direct calls. (Closed)
Patch Set: rebase compile errors Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/android/chrome_entry_point.cc ('k') | chromecast/app/android/cast_jni_loader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « chrome/browser/android/chrome_entry_point.cc ('k') | chromecast/app/android/cast_jni_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698