diff options
author | Michael Wright <michaelwr@google.com> | 2015-06-22 16:18:21 +0100 |
---|---|---|
committer | Michael Wright <michaelwr@google.com> | 2015-09-22 22:05:53 +0100 |
commit | 8e812826015786e07cb83664f22f69b2f2c72586 (patch) | |
tree | d8b201181c4e5a4aa46c8ae33c3b764ad8880064 /services/inputflinger/InputReader.h | |
parent | a16b98c64f5246650aa5b6bc397a2d1fa6539107 (diff) | |
download | frameworks_native-8e812826015786e07cb83664f22f69b2f2c72586.zip frameworks_native-8e812826015786e07cb83664f22f69b2f2c72586.tar.gz frameworks_native-8e812826015786e07cb83664f22f69b2f2c72586.tar.bz2 |
DO NOT MERGE Cancel touches as well as pointer gestures.
Bug: 24302031
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); |