diff options
author | 2023-11-21 18:24:19 +0000 | |
---|---|---|
committer | 2023-12-08 10:52:47 +0000 | |
commit | 953e6a447d18de1929ed2fc5ccd2fcec5c880e52 (patch) | |
tree | d71b718098202fa93fb214503a4c3ae63ba3ef3a /services/inputflinger/InputManager.cpp | |
parent | d1a34bff5ab6914f08110ab6c93e3919b51366b7 (diff) |
Add bounce keys input filter
DD: go/pk_accessibility
Bug: 294546335
Test: TEST=libinputflinger_rs_test; m $TEST && $ANDROID_HOST_OUT/nativetest64/$TEST/$TEST
Change-Id: Id38b3d0fc830d16327b36d1b4376c0a66b6551aa
Diffstat (limited to 'services/inputflinger/InputManager.cpp')
-rw-r--r-- | services/inputflinger/InputManager.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/services/inputflinger/InputManager.cpp b/services/inputflinger/InputManager.cpp index 8cf61f9064..02997f09b9 100644 --- a/services/inputflinger/InputManager.cpp +++ b/services/inputflinger/InputManager.cpp @@ -224,6 +224,10 @@ InputDispatcherInterface& InputManager::getDispatcher() { return *mDispatcher; } +InputFilterInterface& InputManager::getInputFilter() { + return *mInputFilter; +} + void InputManager::monitor() { mReader->monitor(); mBlocker->monitor(); |