diff options
Diffstat (limited to 'services/inputflinger/InputManager.h')
-rw-r--r-- | services/inputflinger/InputManager.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/services/inputflinger/InputManager.h b/services/inputflinger/InputManager.h index 1173fa165f..8f7551e5b2 100644 --- a/services/inputflinger/InputManager.h +++ b/services/inputflinger/InputManager.h @@ -35,6 +35,7 @@ #include <utils/RefBase.h> namespace android { +class InputChannel; /* * The input manager is the core of the system event processing. @@ -91,6 +92,9 @@ public: virtual void setInputWindows(const Vector<InputWindowInfo>& handles); + virtual void registerInputChannel(const sp<InputChannel>& channel); + virtual void unregisterInputChannel(const sp<InputChannel>& channel); + private: sp<InputReaderInterface> mReader; sp<InputReaderThread> mReaderThread; |