diff options
Diffstat (limited to 'libs/input/InputWindow.cpp')
| -rw-r--r-- | libs/input/InputWindow.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/input/InputWindow.cpp b/libs/input/InputWindow.cpp index 556a005580..aa1371fdc9 100644 --- a/libs/input/InputWindow.cpp +++ b/libs/input/InputWindow.cpp @@ -162,4 +162,8 @@ sp<IBinder> InputWindowHandle::getToken() const { return mInfo.token; } +void InputWindowHandle::updateFrom(sp<InputWindowHandle> handle) { + mInfo = handle->mInfo; +} + } // namespace android |