Merge "Fix deadlock between WMG and WMS" into sc-dev

This commit is contained in:
Charles Chen
2021-03-10 15:09:46 +00:00
committed by Android (Google) Code Review

View File

@@ -85,8 +85,10 @@ public class WindowTokenClient extends IWindowToken.Stub {
context.destroy();
mContextRef.clear();
}
// If a secondary display is detached, release all views attached to this token.
WindowManagerGlobal.getInstance().closeAll(this, mContextRef.getClass().getName(),
"WindowContext");
ActivityThread.currentActivityThread().getHandler().post(() -> {
// If the tracked window token is detached, release all views attached to this token.
WindowManagerGlobal.getInstance().closeAll(WindowTokenClient.this,
"#onWindowTokenRemoved()", "WindowTokenClient");
});
}
}