diff options
author | Michael Wright <michaelwr@google.com> | 2015-06-22 16:18:21 +0100 |
---|---|---|
committer | Michael Wright <michaelwr@google.com> | 2015-07-09 12:43:21 -0700 |
commit | fbbaf2efbb7781e86e509709169edf4b5c8fe036 (patch) | |
tree | e6e3d379fa181122012a585321d1da2e6ab4b90c /services/inputflinger/InputReader.h | |
parent | 22feef5d32f34ec15191b090b0e3686074725ef1 (diff) | |
download | frameworks_native-fbbaf2efbb7781e86e509709169edf4b5c8fe036.zip frameworks_native-fbbaf2efbb7781e86e509709169edf4b5c8fe036.tar.gz frameworks_native-fbbaf2efbb7781e86e509709169edf4b5c8fe036.tar.bz2 |
Cancel touches as well as pointer gestures.
Bug: 19264992
Change-Id: Idbe964a1a35c190a32f845e2a19542d54652d011
Diffstat (limited to 'services/inputflinger/InputReader.h')
-rw-r--r-- | services/inputflinger/InputReader.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/services/inputflinger/InputReader.h b/services/inputflinger/InputReader.h index 4062ec7..7cb4680 100644 --- a/services/inputflinger/InputReader.h +++ b/services/inputflinger/InputReader.h @@ -1469,6 +1469,9 @@ protected: // Have we assigned pointer IDs for this stream bool mHavePointerIds; + // Is the current stream of direct touch events aborted + bool mCurrentMotionAborted; + // The time the primary pointer last went down. nsecs_t mDownTime; @@ -1802,6 +1805,7 @@ private: void dispatchButtonPress(nsecs_t when, uint32_t policyFlags); const BitSet32& findActiveIdBits(const CookedPointerData& cookedPointerData); void cookPointerData(); + void abortTouches(nsecs_t when, uint32_t policyFlags); void dispatchPointerUsage(nsecs_t when, uint32_t policyFlags, PointerUsage pointerUsage); void abortPointerUsage(nsecs_t when, uint32_t policyFlags); |