diff options
| author | 2023-07-11 00:08:53 +0000 | |
|---|---|---|
| committer | 2023-07-11 00:08:53 +0000 | |
| commit | dae2e2e0eeeeedcc68e7c312b795ce1347d0c186 (patch) | |
| tree | c7d58122d57228fb8a4681ce170bf12a979370cc | |
| parent | 8f6f59cf1b3ab3eeb7099d6515d775ddcb138952 (diff) | |
| parent | 03e04b032a8c0c3b38f89d376ce6fa75559028b9 (diff) | |
Merge "WindowInfosListenerForTest: Dump displayId in toString" into main
| -rw-r--r-- | core/java/android/window/WindowInfosListenerForTest.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/java/android/window/WindowInfosListenerForTest.java b/core/java/android/window/WindowInfosListenerForTest.java index 7fc55a7f581b..bdbce134801d 100644 --- a/core/java/android/window/WindowInfosListenerForTest.java +++ b/core/java/android/window/WindowInfosListenerForTest.java @@ -90,7 +90,8 @@ public class WindowInfosListenerForTest { @Override public String toString() { - return name + ", frame=" + bounds + return name + ", displayId=" + displayId + + ", frame=" + bounds + ", isVisible=" + isVisible + ", isTrustedOverlay=" + isTrustedOverlay + ", token=" + windowToken; |