Loading services/core/java/com/android/server/wm/WindowManagerService.java +2 −1 Original line number Diff line number Diff line Loading @@ -9161,7 +9161,8 @@ public class WindowManagerService extends IWindowManager.Stub + " " + w.mOutsets.toShortString() + " surfaceResized=" + winAnimator.mSurfaceResized + " configChanged=" + configChanged + " dragResizingChanged=" + dragResizingChanged); + " dragResizingChanged=" + dragResizingChanged + " resizedWhileNotDragResizing=" + w.mResizedWhileNotDragResizing); } // If it's a dead window left on screen, and the configuration changed, Loading services/core/java/com/android/server/wm/WindowState.java +3 −1 Original line number Diff line number Diff line Loading @@ -2266,9 +2266,11 @@ final class WindowState implements WindowManagerPolicy.WindowState { private void dispatchResized(Rect frame, Rect overscanInsets, Rect contentInsets, Rect visibleInsets, Rect stableInsets, Rect outsets, boolean reportDraw, Configuration newConfig) throws RemoteException { final boolean forceRelayout = isDragResizeChanged() || mResizedWhileNotDragResizing; mClient.resized(frame, overscanInsets, contentInsets, visibleInsets, stableInsets, outsets, reportDraw, newConfig, getBackdropFrame(frame), isDragResizeChanged() /* forceRelayout */, mPolicy.isNavBarForcedShownLw(this)); forceRelayout, mPolicy.isNavBarForcedShownLw(this)); mDragResizingChangeReported = true; } Loading Loading
services/core/java/com/android/server/wm/WindowManagerService.java +2 −1 Original line number Diff line number Diff line Loading @@ -9161,7 +9161,8 @@ public class WindowManagerService extends IWindowManager.Stub + " " + w.mOutsets.toShortString() + " surfaceResized=" + winAnimator.mSurfaceResized + " configChanged=" + configChanged + " dragResizingChanged=" + dragResizingChanged); + " dragResizingChanged=" + dragResizingChanged + " resizedWhileNotDragResizing=" + w.mResizedWhileNotDragResizing); } // If it's a dead window left on screen, and the configuration changed, Loading
services/core/java/com/android/server/wm/WindowState.java +3 −1 Original line number Diff line number Diff line Loading @@ -2266,9 +2266,11 @@ final class WindowState implements WindowManagerPolicy.WindowState { private void dispatchResized(Rect frame, Rect overscanInsets, Rect contentInsets, Rect visibleInsets, Rect stableInsets, Rect outsets, boolean reportDraw, Configuration newConfig) throws RemoteException { final boolean forceRelayout = isDragResizeChanged() || mResizedWhileNotDragResizing; mClient.resized(frame, overscanInsets, contentInsets, visibleInsets, stableInsets, outsets, reportDraw, newConfig, getBackdropFrame(frame), isDragResizeChanged() /* forceRelayout */, mPolicy.isNavBarForcedShownLw(this)); forceRelayout, mPolicy.isNavBarForcedShownLw(this)); mDragResizingChangeReported = true; } Loading