diff options
author | 2020-07-24 16:22:36 +0000 | |
---|---|---|
committer | 2020-07-24 16:22:36 +0000 | |
commit | 1bd1fcfd858a463c507c35fb99255487f745101d (patch) | |
tree | ad941d534864481384b81875873fa56476d32dbb /services/inputflinger/InputManager.cpp | |
parent | 2fc6b5f4fecf362701eedac2fcabe0fcd50407b5 (diff) | |
parent | e798b47821d07191a20bdb7a3a1fc3887b661635 (diff) |
Merge "Add setFocusedWindow function stub"
Diffstat (limited to 'services/inputflinger/InputManager.cpp')
-rw-r--r-- | services/inputflinger/InputManager.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/services/inputflinger/InputManager.cpp b/services/inputflinger/InputManager.cpp index 088c6f1f48..e49667e549 100644 --- a/services/inputflinger/InputManager.cpp +++ b/services/inputflinger/InputManager.cpp @@ -146,4 +146,9 @@ status_t InputManager::dump(int fd, const Vector<String16>& args) { return NO_ERROR; } +binder::Status InputManager::setFocusedWindow(const FocusRequest& request) { + mDispatcher->setFocusedWindow(request); + return binder::Status::ok(); +} + } // namespace android |