diff options
| author | 2023-04-26 12:23:57 -0700 | |
|---|---|---|
| committer | 2023-04-26 12:23:57 -0700 | |
| commit | d714f0e5943f6c75b3f7a3aeda86a7722a0b38eb (patch) | |
| tree | 3f06d039439a0145effa2a30e3b73d51c179cc0a | |
| parent | ecae4451e3c7f1b2f793dfd5318f93ddace0b4a7 (diff) | |
Remove unused HandleMenu variables.
Removes unneeded handle menu variables that have been moved to the
HandleMenu class.
Bug: 276364188
Test: Manual
Change-Id: I2728da57b72f3149667cd366173eed53c086593e
| -rw-r--r-- | libs/WindowManager/Shell/src/com/android/wm/shell/windowdecor/DesktopModeWindowDecoration.java | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/libs/WindowManager/Shell/src/com/android/wm/shell/windowdecor/DesktopModeWindowDecoration.java b/libs/WindowManager/Shell/src/com/android/wm/shell/windowdecor/DesktopModeWindowDecoration.java index 362d91ac5b5e..b1c3791ad15a 100644 --- a/libs/WindowManager/Shell/src/com/android/wm/shell/windowdecor/DesktopModeWindowDecoration.java +++ b/libs/WindowManager/Shell/src/com/android/wm/shell/windowdecor/DesktopModeWindowDecoration.java @@ -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, |