diff options
author | Jeff Brown <jeffbrown@google.com> | 2011-04-19 15:37:32 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-04-19 15:37:32 -0700 |
commit | 3f14891fc9e764d97de07b109f066aedfff90c2e (patch) | |
tree | 7d026487ee719489cea2c1237901ef6cf325efe2 /services/input/tests/InputReader_test.cpp | |
parent | 05d30b14843bf7cf252873f4d0d39706878b28c2 (diff) | |
parent | 2352b978a3c94cd88f41d0d908f961333fdac1e9 (diff) | |
download | frameworks_base-3f14891fc9e764d97de07b109f066aedfff90c2e.zip frameworks_base-3f14891fc9e764d97de07b109f066aedfff90c2e.tar.gz frameworks_base-3f14891fc9e764d97de07b109f066aedfff90c2e.tar.bz2 |
Merge "Initial checkin of spot presentation for touchpad gestures."
Diffstat (limited to 'services/input/tests/InputReader_test.cpp')
-rw-r--r-- | services/input/tests/InputReader_test.cpp | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/services/input/tests/InputReader_test.cpp b/services/input/tests/InputReader_test.cpp index ba8ca9c..54bb9d7 100644 --- a/services/input/tests/InputReader_test.cpp +++ b/services/input/tests/InputReader_test.cpp @@ -97,6 +97,16 @@ private: virtual void unfade() { } + + virtual void setPresentation(Presentation presentation) { + } + + virtual void setSpots(SpotGesture spotGesture, + const PointerCoords* spotCoords, const uint32_t* spotIdToIndex, BitSet32 spotIdBits) { + } + + virtual void clearSpots() { + } }; @@ -192,10 +202,6 @@ private: virtual sp<PointerControllerInterface> obtainPointerController(int32_t deviceId) { return mPointerControllers.valueFor(deviceId); } - - virtual sp<SpotControllerInterface> obtainSpotController(int32_t device) { - return NULL; - } }; |