commit | 63b6361f3e23ab44c7e1adfe06ce9e11270d5100 | [log] [tgz] |
---|---|---|
author | Siarhei Vishniakou <svv@google.com> | Wed Apr 12 11:00:23 2023 -0700 |
committer | Siarhei Vishniakou <svv@google.com> | Thu Apr 13 08:42:08 2023 -0700 |
tree | 77f7eba10d46b433af628048fc5517affd5beafc | |
parent | c2eb8505edd83a38f4f4ff0454ba958615ccda12 [diff] [blame] |
Convert input event type to enum class This will increase type safety and simplify some of the printing. Bug: 274073185 Test: m checkinput Change-Id: I848c2f156cc23232c50d2338b4788be3232dba1a
diff --git a/libs/input/android/os/InputEventInjectionSync.aidl b/libs/input/android/os/InputEventInjectionSync.aidl index 95d24cb..2d225fa 100644 --- a/libs/input/android/os/InputEventInjectionSync.aidl +++ b/libs/input/android/os/InputEventInjectionSync.aidl
@@ -33,4 +33,7 @@ /* Waits for the input event to be completely processed. */ WAIT_FOR_FINISHED = 2, + + ftl_first = NONE, + ftl_last = WAIT_FOR_FINISHED, }