diff options
author | 2020-07-22 12:07:12 -0700 | |
---|---|---|
committer | 2020-07-28 18:01:10 -0700 | |
commit | 6c4243bfedc2ad66c92a7bc470be1470cf99b2f7 (patch) | |
tree | 633879c0c5b9236f14f295823e9e0e9faf914799 /libs/input/InputWindow.cpp | |
parent | 30cb610116c678d5c03e3e2113fd02d67c631691 (diff) |
Use AIDL compiler to generate InputApplicationInfo class.
Define parcelable structure in AIDL file to skip manual code of parcel
read and write.
Bug: 160178917
Test: atest libinput_tests
Change-Id: Ic7a5a0b383fdb5784b9b8cdb0ee5acce30b89223
Diffstat (limited to 'libs/input/InputWindow.cpp')
-rw-r--r-- | libs/input/InputWindow.cpp | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/libs/input/InputWindow.cpp b/libs/input/InputWindow.cpp index 51190a0451..6db9ed5148 100644 --- a/libs/input/InputWindow.cpp +++ b/libs/input/InputWindow.cpp @@ -57,17 +57,15 @@ bool InputWindowInfo::operator==(const InputWindowInfo& info) const { info.frameLeft == frameLeft && info.frameTop == frameTop && info.frameRight == frameRight && info.frameBottom == frameBottom && info.surfaceInset == surfaceInset && info.globalScaleFactor == globalScaleFactor && - info.transform == transform && - info.touchableRegion.hasSameRects(touchableRegion) && info.visible == visible && - info.canReceiveKeys == canReceiveKeys && info.trustedOverlay == trustedOverlay && - info.hasFocus == hasFocus && info.hasWallpaper == hasWallpaper && - info.paused == paused && info.ownerPid == ownerPid && info.ownerUid == ownerUid && + info.transform == transform && info.touchableRegion.hasSameRects(touchableRegion) && + info.visible == visible && info.canReceiveKeys == canReceiveKeys && + info.trustedOverlay == trustedOverlay && info.hasFocus == hasFocus && + info.hasWallpaper == hasWallpaper && info.paused == paused && + info.ownerPid == ownerPid && info.ownerUid == ownerUid && info.inputFeatures == inputFeatures && info.displayId == displayId && info.portalToDisplayId == portalToDisplayId && info.replaceTouchableRegionWithCrop == replaceTouchableRegionWithCrop && - info.applicationInfo.name == applicationInfo.name && - info.applicationInfo.token == applicationInfo.token && - info.applicationInfo.dispatchingTimeout == applicationInfo.dispatchingTimeout; + info.applicationInfo == applicationInfo; } status_t InputWindowInfo::writeToParcel(android::Parcel* parcel) const { |