diff options
| author | 2019-12-19 07:49:32 +0000 | |
|---|---|---|
| committer | 2019-12-19 07:49:32 +0000 | |
| commit | 8b19a0550297ed6e849b3e79cfc3de311cdf8892 (patch) | |
| tree | 9e1abf7561681c1b11cf5f50dc231e4b47fd20a3 /libs/input/IInputFlinger.cpp | |
| parent | 86ced3ef2e7f50c200ad483009eb2a214029f012 (diff) | |
| parent | 5845eafaad804ffe8088cd34cdb52f6f9f9282de (diff) | |
Merge "Revert "Fix drag and drop (2/3)"" into qt-qpr1-dev
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); } |