| Index: content/public/android/java/src/org/chromium/content/browser/ScreenOrientationListener.java
|
| diff --git a/content/public/android/java/src/org/chromium/content/browser/ScreenOrientationListener.java b/content/public/android/java/src/org/chromium/content/browser/ScreenOrientationListener.java
|
| index 79b8ddbb7b366045c553d47fd21c89c4c55d0211..43e4a33017aa3273ed77bbf5d77a72f8c4bb434b 100644
|
| --- a/content/public/android/java/src/org/chromium/content/browser/ScreenOrientationListener.java
|
| +++ b/content/public/android/java/src/org/chromium/content/browser/ScreenOrientationListener.java
|
| @@ -18,7 +18,6 @@ import android.view.WindowManager;
|
| import org.chromium.base.ObserverList;
|
| import org.chromium.base.ThreadUtils;
|
| import org.chromium.base.VisibleForTesting;
|
| -import org.chromium.ui.gfx.DeviceDisplayInfo;
|
|
|
| /**
|
| * ScreenOrientationListener is a class that informs its observers when the
|
| @@ -319,7 +318,7 @@ public class ScreenOrientationListener {
|
| return;
|
| }
|
|
|
| - DeviceDisplayInfo.create(mAppContext).updateNativeSharedDisplayInfo();
|
| + // TODO if we cache DeviceDisplayInfo then update the caches here
|
|
|
| for (ScreenOrientationObserver observer : mObservers) {
|
| observer.onScreenOrientationChanged(mOrientation);
|
|
|