diff options
author | 2020-06-02 21:34:49 -0700 | |
---|---|---|
committer | 2020-07-10 15:49:48 -0700 | |
commit | 0783e99d457c9d9a3ede400bdb355ba35e828de6 (patch) | |
tree | 7796db4b8f617c73befbb2d76c79e516ee56fd93 /libs/gui/SurfaceComposerClient.cpp | |
parent | 8dcf124c0894e90b932ff5501892dacc37f36fad (diff) |
AIDL-ize InputManager IInputFlinger interface.
Use AIDL interface to define the IInputFlinger interface and replace
the manual interface.
Bug:155425003
Test: atest libgui_test, atest libinput_test.
Change-Id: Ibad036b8ceb3a3f5c6d58f8de4ea8c79379d29b5
Diffstat (limited to 'libs/gui/SurfaceComposerClient.cpp')
-rw-r--r-- | libs/gui/SurfaceComposerClient.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/gui/SurfaceComposerClient.cpp b/libs/gui/SurfaceComposerClient.cpp index 16b46df4f6..d797a3547a 100644 --- a/libs/gui/SurfaceComposerClient.cpp +++ b/libs/gui/SurfaceComposerClient.cpp @@ -1359,7 +1359,7 @@ SurfaceComposerClient::Transaction& SurfaceComposerClient::Transaction::setInput mStatus = BAD_INDEX; return *this; } - s->inputInfo = info; + s->inputHandle = new InputWindowHandle(info); s->what |= layer_state_t::eInputInfoChanged; return *this; } |