diff options
author | Jeff Brown <jeffbrown@google.com> | 2011-02-16 20:00:21 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-02-16 20:00:21 -0800 |
commit | 45708bf2f03f9f50c22f86cb794c2a088bab1c05 (patch) | |
tree | e08b9a0954795be704c9473d0d31716a98e0cb09 /services/jni | |
parent | 88083d4f2b9c2dc66ba39bd2c4ffa0ff7c1fbcd4 (diff) | |
parent | 91c69ab01539f7ba28708f41ec1835cc2920d0a0 (diff) | |
download | frameworks_base-45708bf2f03f9f50c22f86cb794c2a088bab1c05.zip frameworks_base-45708bf2f03f9f50c22f86cb794c2a088bab1c05.tar.gz frameworks_base-45708bf2f03f9f50c22f86cb794c2a088bab1c05.tar.bz2 |
Merge "Add support for arbitrary axes in MotionEvents."
Diffstat (limited to 'services/jni')
-rw-r--r-- | services/jni/com_android_server_InputManager.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/services/jni/com_android_server_InputManager.cpp b/services/jni/com_android_server_InputManager.cpp index 5b329bb..427af23 100644 --- a/services/jni/com_android_server_InputManager.cpp +++ b/services/jni/com_android_server_InputManager.cpp @@ -87,7 +87,6 @@ static struct { jfieldID mName; jfieldID mSources; jfieldID mKeyboardType; - jfieldID mMotionRanges; } gInputDeviceClassInfo; static struct { @@ -1221,9 +1220,6 @@ int register_android_server_InputManager(JNIEnv* env) { GET_FIELD_ID(gInputDeviceClassInfo.mKeyboardType, gInputDeviceClassInfo.clazz, "mKeyboardType", "I"); - GET_FIELD_ID(gInputDeviceClassInfo.mMotionRanges, gInputDeviceClassInfo.clazz, - "mMotionRanges", "[Landroid/view/InputDevice$MotionRange;"); - // Configuration FIND_CLASS(gConfigurationClassInfo.clazz, "android/content/res/Configuration"); |