Remove unused HandleMenu variables.

Removes unneeded handle menu variables that have been moved to the
HandleMenu class.

Bug: 276364188
Test: Manual
Change-Id: I2728da57b72f3149667cd366173eed53c086593e
This commit is contained in:
mattsziklay
2023-04-26 12:23:57 -07:00
parent ecae4451e3
commit d714f0e594

View File

@@ -74,14 +74,6 @@ public class DesktopModeWindowDecoration extends WindowDecoration<WindowDecorLin
new WindowDecoration.RelayoutResult<>();
private final Point mPositionInParent = new Point();
private final PointF mHandleMenuAppInfoPillPosition = new PointF();
private final PointF mHandleMenuWindowingPillPosition = new PointF();
private final PointF mHandleMenuMoreActionsPillPosition = new PointF();
// Collection of additional windows that comprise the handle menu.
private AdditionalWindow mHandleMenuAppInfoPill;
private AdditionalWindow mHandleMenuWindowingPill;
private AdditionalWindow mHandleMenuMoreActionsPill;
private HandleMenu mHandleMenu;
private ResizeVeil mResizeVeil;
@@ -91,16 +83,6 @@ public class DesktopModeWindowDecoration extends WindowDecoration<WindowDecorLin
private TaskCornersListener mCornersListener;
private int mMenuWidth;
private int mMarginMenuTop;
private int mMarginMenuStart;
private int mMarginMenuSpacing;
private int mAppInfoPillHeight;
private int mWindowingPillHeight;
private int mMoreActionsPillHeight;
private int mShadowRadius;
private int mMenuCornerRadius;
DesktopModeWindowDecoration(
Context context,
DisplayController displayController,