diff options
author | 2023-06-09 16:16:03 +0000 | |
---|---|---|
committer | 2023-06-09 16:16:03 +0000 | |
commit | e632c7cbd2ee0483b48bd4924aff2ff1375a7b10 (patch) | |
tree | d78f99b79fc9b97e3ed62712489418953e22bcde /services/inputflinger/InputManager.cpp | |
parent | c66c24e84864fcae8d2c728bfefca819e42d0ba6 (diff) | |
parent | 442937958b2291470148b675ae58c4a44e880e14 (diff) |
Merge changes from topics "breakdown-usage-by-uid", "notify-device-interaction" into udc-qpr-dev
* changes:
Break down input device usage by uid
Notify MetricsCollector of device interaction from Dispatcher
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 863b4839be..1a9f47d934 100644 --- a/services/inputflinger/InputManager.cpp +++ b/services/inputflinger/InputManager.cpp @@ -127,6 +127,10 @@ InputProcessorInterface& InputManager::getProcessor() { return *mProcessor; } +InputDeviceMetricsCollectorInterface& InputManager::getMetricsCollector() { + return *mCollector; +} + InputDispatcherInterface& InputManager::getDispatcher() { return *mDispatcher; } |