diff options
| author | 2019-12-19 10:45:29 +0000 | |
|---|---|---|
| committer | 2019-12-19 10:45:29 +0000 | |
| commit | bb2dd8ea03e354415eec66044934051f89bc94d0 (patch) | |
| tree | 4bca33de473d4dba62d30b40d503fca1ae99162e /libs/input/IInputFlinger.cpp | |
| parent | e62fe7e21ae881dacb843b0406d8f1e49367d185 (diff) | |
| parent | 8b19a0550297ed6e849b3e79cfc3de311cdf8892 (diff) | |
Merge "Revert "Fix drag and drop (2/3)"" into qt-qpr1-dev am: 8b19a05502
Change-Id: I67ec7ef546b5d0bdf954266687955ee8c5f94bf4
Diffstat (limited to 'libs/input/IInputFlinger.cpp')
| -rw-r--r-- | libs/input/IInputFlinger.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/libs/input/IInputFlinger.cpp b/libs/input/IInputFlinger.cpp index d6a73bfd27..de3a23d76e 100644 --- a/libs/input/IInputFlinger.cpp +++ b/libs/input/IInputFlinger.cpp @@ -45,16 +45,6 @@ public: IBinder::FLAG_ONEWAY); } - virtual void transferTouchFocus(const sp<IBinder>& fromToken, const sp<IBinder>& toToken) { - Parcel data, reply; - data.writeInterfaceToken(IInputFlinger::getInterfaceDescriptor()); - - data.writeStrongBinder(fromToken); - data.writeStrongBinder(toToken); - remote()->transact(BnInputFlinger::TRANSFER_TOUCH_FOCUS, data, &reply, - IBinder::FLAG_ONEWAY); - } - virtual void registerInputChannel(const sp<InputChannel>& channel) { Parcel data, reply; data.writeInterfaceToken(IInputFlinger::getInterfaceDescriptor()); @@ -104,13 +94,6 @@ status_t BnInputFlinger::onTransact( unregisterInputChannel(channel); break; } - case TRANSFER_TOUCH_FOCUS: { - CHECK_INTERFACE(IInputFlinger, data, reply); - sp<IBinder> fromToken = data.readStrongBinder(); - sp<IBinder> toToken = data.readStrongBinder(); - transferTouchFocus(fromToken, toToken); - break; - } default: return BBinder::onTransact(code, data, reply, flags); } |