• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1diff --git a/base/android/java/src/org/chromium/base/ContextUtils.java b/base/android/java/src/org/chromium/base/ContextUtils.java
2index 8284cd1..c648e01 100644
3--- a/base/android/java/src/org/chromium/base/ContextUtils.java
4+++ b/base/android/java/src/org/chromium/base/ContextUtils.java
5@@ -100,9 +100,10 @@ public class ContextUtils {
6         // that use Robolectric and set the application context manually. Instead of changing all
7         // tests that do so, the call was put here instead.
8         // TODO(mheikal): Require param to be of type Application
9-        if (appContext instanceof Application) {
10-            ApplicationStatus.initialize((Application) appContext);
11-        }
12+        // Disabled on libchrome
13+        // if (appContext instanceof Application) {
14+        //     ApplicationStatus.initialize((Application) appContext);
15+        // }
16         initJavaSideApplicationContext(appContext);
17         Holder.sSharedPreferences = fetchAppSharedPreferences();
18     }
19