Raise motion event throttle to 60Hz from 35Hz.

Bug: 2931575
Change-Id: Ib8b1793addcda74b2fa6de2ce61b6133b8ffda9d
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 @@
 
 /*
  * 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 @@
             } 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 @@
         jint result = env->CallIntMethod(mCallbacksObj,
                 gCallbacksClassInfo.getMaxEventsPerSecond);
         if (checkAndClearExceptionFromCallback(env, "getMaxEventsPerSecond")) {
-            result = 35;
+            result = 60;
         }
 
         mMaxEventsPerSecond = result;