Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b96be79e authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "The binder die callback should add the wms global lock." into main

parents 7a0ee810 771cda18
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -723,8 +723,14 @@ public class WindowManagerService extends IWindowManager.Stub
            new WallpaperVisibilityListeners();

    IDisplayChangeWindowController mDisplayChangeController = null;
    private final DeathRecipient mDisplayChangeControllerDeath =
            () -> mDisplayChangeController = null;
    private final DeathRecipient mDisplayChangeControllerDeath = new DeathRecipient() {
        @Override
        public void binderDied() {
            synchronized (mGlobalLock) {
                mDisplayChangeController = null;
            }
        }
    };

    final DisplayWindowListenerController mDisplayNotificationController;
    final TaskSystemBarsListenerController mTaskSystemBarsListenerController;