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

Unified Diff: content/public/android/java/src/org/chromium/content/app/ContentApplication.java

Issue 2406093002: Fix monochrome not booting issue (Closed)
Patch Set: Created 4 years, 2 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
Index: content/public/android/java/src/org/chromium/content/app/ContentApplication.java
diff --git a/content/public/android/java/src/org/chromium/content/app/ContentApplication.java b/content/public/android/java/src/org/chromium/content/app/ContentApplication.java
index 821d22393d9e790e89b47bca39967ba05201ef39..fea54aee5d4cee90dc94418d05c12d1ea0f6ef82 100644
--- a/content/public/android/java/src/org/chromium/content/app/ContentApplication.java
+++ b/content/public/android/java/src/org/chromium/content/app/ContentApplication.java
@@ -56,10 +56,18 @@ public abstract class ContentApplication extends BaseChromiumApplication {
}
});
+ initializeLibraryDependencies();
mLibraryDependenciesInitialized = true;
}
/**
+ * Initialize all the dependencies that need to be setup before library loading can be
+ * kicked off.
+ */
+ protected void initializeLibraryDependencies() {
+ }
+
+ /**
* @return Whether the library dependencies have been initialized and it is safe to issue
* requests to load the native library.
*/

Powered by Google App Engine
This is Rietveld 408576698