summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJeff Brown <jeffbrown@google.com>2010-08-31 15:20:28 -0700
committerJeff Brown <jeffbrown@google.com>2010-08-31 15:24:55 -0700
commit774cf1baa17eeb76d4ad969266686df9b6248aaf (patch)
tree7517e986c6346b7337cb1bc362f0e3aba7fe2102 /include
parent6d29e3924090d75cd241970af998bca7296bc7fa (diff)
downloadframeworks_native-774cf1baa17eeb76d4ad969266686df9b6248aaf.zip
frameworks_native-774cf1baa17eeb76d4ad969266686df9b6248aaf.tar.gz
frameworks_native-774cf1baa17eeb76d4ad969266686df9b6248aaf.tar.bz2
Remove incomplete input device enumeration NDK API.
Change-Id: I32de74ff5fcf0e29179a2aee03ddabd22fa485bb
Diffstat (limited to 'include')
-rw-r--r--include/ui/Input.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/include/ui/Input.h b/include/ui/Input.h
index 49347d3..3fa825f 100644
--- a/include/ui/Input.h
+++ b/include/ui/Input.h
@@ -466,29 +466,6 @@ private:
KeyedVector<int32_t, MotionRange> mMotionRanges;
};
-/*
- * Provides remote access to information about an input device.
- *
- * Note: This is essentially a wrapper for Binder calls into the Window Manager Service.
- */
-class InputDeviceProxy : public RefBase, public AInputDevice {
-protected:
- InputDeviceProxy();
- virtual ~InputDeviceProxy();
-
-public:
- static void getDeviceIds(Vector<int32_t>& outIds);
-
- static sp<InputDeviceProxy> getDevice(int32_t id);
-
- inline const InputDeviceInfo* getInfo() { return & mInfo; }
-
- // TODO add hasKeys, keymap, etc...
-
-private:
- InputDeviceInfo mInfo;
-};
-
} // namespace android