| Index: chrome/android/java/src/org/chromium/chrome/browser/ChromeActivity.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/ChromeActivity.java b/chrome/android/java/src/org/chromium/chrome/browser/ChromeActivity.java
|
| index 4f2752ae28b4c3090706c5267dd4d9f6de7cfbc3..6e6c162f47bf4a7538b0882f8897edb602d6e411 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/ChromeActivity.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/ChromeActivity.java
|
| @@ -307,7 +307,7 @@ public abstract class ChromeActivity extends AsyncInitializationActivity
|
| // If a user had ALLOW_LOW_END_DEVICE_UI explicitly set to false then we manually override
|
| // SysUtils.isLowEndDevice() with a switch so that they continue to see the normal UI. This
|
| // is only the case for grandfathered-in svelte users. We no longer do so for newer users.
|
| - if (!ChromePreferenceManager.getInstance(this).getAllowLowEndDeviceUi()) {
|
| + if (!ChromePreferenceManager.getInstance().getAllowLowEndDeviceUi()) {
|
| CommandLine.getInstance().appendSwitch(
|
| BaseSwitches.DISABLE_LOW_END_DEVICE_MODE);
|
| }
|
|
|