Merge "Don't notify dead client about losing control" into rvc-dev am: edd4859399 am: 258bbc2f4d

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/11659722

Change-Id: I5d87f1e87308ca9dfc130314bc0907db8d432298
This commit is contained in:
Tiger Huang
2020-06-15 13:54:21 +00:00
committed by Automerger Merge Worker

View File

@@ -3576,6 +3576,9 @@ class WindowState extends WindowContainer<WindowState> implements WindowManagerP
@Override
public void notifyInsetsControlChanged() {
ProtoLog.d(WM_DEBUG_IME, "notifyInsetsControlChanged for %s ", this);
if (mAppDied || mRemoved) {
return;
}
final InsetsStateController stateController =
getDisplayContent().getInsetsStateController();
try {