diff options
author | Jeff Brown <jeffbrown@google.com> | 2010-10-24 15:22:06 -0700 |
---|---|---|
committer | Jeff Brown <jeffbrown@google.com> | 2010-10-24 15:25:53 -0700 |
commit | 7631cbbed41ad3183723e5bc6e082d40549664b9 (patch) | |
tree | 08cbfda54b2574cdbfca6ba9171807b5b1ff0e1a /libs/ui | |
parent | 3ae4ac8538765d6cf5b8aceea8c81b21854321bd (diff) | |
download | frameworks_base-7631cbbed41ad3183723e5bc6e082d40549664b9.zip frameworks_base-7631cbbed41ad3183723e5bc6e082d40549664b9.tar.gz frameworks_base-7631cbbed41ad3183723e5bc6e082d40549664b9.tar.bz2 |
Add test stubs for newly added methods.
Change-Id: I44139adebbbed1358f613fbcbfcddac6617ef5bd
Diffstat (limited to 'libs/ui')
-rw-r--r-- | libs/ui/tests/InputReader_test.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libs/ui/tests/InputReader_test.cpp b/libs/ui/tests/InputReader_test.cpp index de4b05a..c19147f 100644 --- a/libs/ui/tests/InputReader_test.cpp +++ b/libs/ui/tests/InputReader_test.cpp @@ -342,6 +342,12 @@ private: ADD_FAILURE() << "Should never be called by input reader."; } + virtual bool transferTouchFocus(const sp<InputChannel>& fromChannel, + const sp<InputChannel>& toChannel) { + ADD_FAILURE() << "Should never be called by input reader."; + return 0; + } + virtual status_t registerInputChannel(const sp<InputChannel>& inputChannel, bool monitor) { ADD_FAILURE() << "Should never be called by input reader."; return 0; @@ -577,6 +583,13 @@ private: return result; } + virtual bool hasLed(int32_t deviceId, int32_t led) const { + return false; + } + + virtual void setLedState(int32_t deviceId, int32_t led, bool on) { + } + virtual void dump(String8& dump) { } }; |