diff options
Diffstat (limited to 'libs/gui/tests/EndToEndNativeInputTest.cpp')
-rw-r--r-- | libs/gui/tests/EndToEndNativeInputTest.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libs/gui/tests/EndToEndNativeInputTest.cpp b/libs/gui/tests/EndToEndNativeInputTest.cpp index 3965ea0fdb..968484cfc6 100644 --- a/libs/gui/tests/EndToEndNativeInputTest.cpp +++ b/libs/gui/tests/EndToEndNativeInputTest.cpp @@ -127,7 +127,11 @@ public: InputEvent *ev; uint32_t seqId; - status_t consumed = mInputConsumer->consume(&mInputEventFactory, true, -1, &seqId, &ev); + int motionEventType; + int touchMoveNumber; + bool flag; + status_t consumed = mInputConsumer->consume(&mInputEventFactory, true, -1, &seqId, &ev, + &motionEventType, &touchMoveNumber, &flag); if (consumed != OK) { return nullptr; } |