Add mAllowInputEvents state to the dump

Add mAllowInputEvents to the PipTouchState dump.
Currently mAllowInputEvents is being used to decide whether
to ignore input events for resizing and dragging while
resize animation is ongoing (i.e. final bounds have not bee submitted)

Bug: 287528018
Bug: 286339795
Test: atest WMShellUnitTests
Test: adb shell dumpsys activity service SystemUIService WMShell
Change-Id: Iffb0afa09e7e907e194fe7c2d1e3b4f93cab7fde
This commit is contained in:
Ikram Gabiyev
2023-06-15 15:46:32 -07:00
parent 20a77c7bc2
commit d0df1df0f5

View File

@@ -410,6 +410,7 @@ public class PipTouchState {
final String innerPrefix = prefix + " ";
pw.println(prefix + TAG);
pw.println(innerPrefix + "mAllowTouches=" + mAllowTouches);
pw.println(innerPrefix + "mAllowInputEvents=" + mAllowInputEvents);
pw.println(innerPrefix + "mActivePointerId=" + mActivePointerId);
pw.println(innerPrefix + "mLastTouchDisplayId=" + mLastTouchDisplayId);
pw.println(innerPrefix + "mDownTouch=" + mDownTouch);