diff options
Diffstat (limited to 'services/java/com/android/server/InputWindow.java')
| -rw-r--r-- | services/java/com/android/server/InputWindow.java | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/services/java/com/android/server/InputWindow.java b/services/java/com/android/server/InputWindow.java index 8da0cf110f1f..dbc59ef9dfd5 100644 --- a/services/java/com/android/server/InputWindow.java +++ b/services/java/com/android/server/InputWindow.java @@ -34,9 +34,17 @@ public final class InputWindow { // Dispatching timeout. public long dispatchingTimeoutNanos; - // Window frame position. + // Window frame area. public int frameLeft; public int frameTop; + public int frameRight; + public int frameBottom; + + // Window visible frame area. + public int visibleFrameLeft; + public int visibleFrameTop; + public int visibleFrameRight; + public int visibleFrameBottom; // Window touchable area. public int touchableAreaLeft; |
