summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--services/java/com/android/server/InputManager.java5
-rw-r--r--services/jni/com_android_server_InputManager.cpp2
2 files changed, 2 insertions, 5 deletions
diff --git a/services/java/com/android/server/InputManager.java b/services/java/com/android/server/InputManager.java
index e54f183..f330d40 100644
--- a/services/java/com/android/server/InputManager.java
+++ b/services/java/com/android/server/InputManager.java
@@ -48,9 +48,6 @@ import java.util.ArrayList;
/*
* Wraps the C++ InputManager and provides its callbacks.
- *
- * XXX Tempted to promote this to a first-class service, ie. InputManagerService, to
- * improve separation of concerns with respect to the window manager.
*/
public class InputManager {
static final String TAG = "InputManager";
@@ -517,7 +514,7 @@ public class InputManager {
} catch (NumberFormatException e) {
}
if (result < 1) {
- result = 35;
+ result = 60;
}
return result;
}
diff --git a/services/jni/com_android_server_InputManager.cpp b/services/jni/com_android_server_InputManager.cpp
index 59528db..3addc0d 100644
--- a/services/jni/com_android_server_InputManager.cpp
+++ b/services/jni/com_android_server_InputManager.cpp
@@ -934,7 +934,7 @@ int32_t NativeInputManager::getMaxEventsPerSecond() {
jint result = env->CallIntMethod(mCallbacksObj,
gCallbacksClassInfo.getMaxEventsPerSecond);
if (checkAndClearExceptionFromCallback(env, "getMaxEventsPerSecond")) {
- result = 35;
+ result = 60;
}
mMaxEventsPerSecond = result;