diff options
author | Jeff Brown <jeffbrown@google.com> | 2010-10-01 19:01:14 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2010-10-01 19:01:14 -0700 |
commit | e11b76d3efb056edea301d53a354d0730adf3520 (patch) | |
tree | 7f25a0eb45fad5895e9eb23b8c802f92151af232 /include | |
parent | 8788d140363ed921f49d366d67bd7164e63e54ae (diff) | |
parent | f6295b35db7a7c40d4fb1c981e231bebcf13e2ba (diff) | |
download | frameworks_base-e11b76d3efb056edea301d53a354d0730adf3520.zip frameworks_base-e11b76d3efb056edea301d53a354d0730adf3520.tar.gz frameworks_base-e11b76d3efb056edea301d53a354d0730adf3520.tar.bz2 |
am f6295b35: Merge "Minor logging changes to input dispatcher to help with debugging." into gingerbread
Merge commit 'f6295b35db7a7c40d4fb1c981e231bebcf13e2ba' into gingerbread-plus-aosp
* commit 'f6295b35db7a7c40d4fb1c981e231bebcf13e2ba':
Minor logging changes to input dispatcher to help with debugging.
Diffstat (limited to 'include')
-rw-r--r-- | include/ui/EventHub.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/include/ui/EventHub.h b/include/ui/EventHub.h index d6b09dc..d077d0e 100644 --- a/include/ui/EventHub.h +++ b/include/ui/EventHub.h @@ -181,6 +181,8 @@ public: */ virtual bool markSupportedKeyCodes(int32_t deviceId, size_t numCodes, const int32_t* keyCodes, uint8_t* outFlags) const = 0; + + virtual void dump(String8& dump) = 0; }; class EventHub : public EventHubInterface @@ -211,6 +213,8 @@ public: virtual bool getEvent(RawEvent* outEvent); + virtual void dump(String8& dump); + protected: virtual ~EventHub(); @@ -239,8 +243,8 @@ private: ~device_t(); }; - device_t* getDevice(int32_t deviceId) const; - bool hasKeycode(device_t* device, int keycode) const; + device_t* getDeviceLocked(int32_t deviceId) const; + bool hasKeycodeLocked(device_t* device, int keycode) const; int32_t getScanCodeStateLocked(device_t* device, int32_t scanCode) const; int32_t getKeyCodeStateLocked(device_t* device, int32_t keyCode) const; |