Merge "Remove invocation of closeTransaction while using a11y service" into rvc-dev am: c57159c790 am: a4ab780728 am: 2356303590

Change-Id: I112e0823255ba9cb76d6afea90ab54c097a7d17f
This commit is contained in:
Riddle Hsu
2020-04-22 09:02:02 +00:00
committed by Automerger Merge Worker

View File

@@ -7650,15 +7650,8 @@ public class WindowManagerService extends IWindowManager.Stub
Slog.w(TAG, "Cannot find window which accessibility connection is added to"); Slog.w(TAG, "Cannot find window which accessibility connection is added to");
return; return;
} }
try (SurfaceControl.Transaction t = new SurfaceControl.Transaction()) { mTransaction.setMetadata(state.mSurfaceControl,
t.setMetadata( SurfaceControl.METADATA_ACCESSIBILITY_ID, accessibilityWindowId).apply();
state.mSurfaceControl,
SurfaceControl.METADATA_ACCESSIBILITY_ID,
accessibilityWindowId);
t.apply();
} finally {
SurfaceControl.closeTransaction();
}
} }
} }