am 36beeca4: am 3d8c9bdb: Raise motion event throttle to 60Hz from 35Hz.

Merge commit '36beeca4c34af2aed6a070e43b69993daff67661'

* commit '36beeca4c34af2aed6a070e43b69993daff67661':
  Raise motion event throttle to 60Hz from 35Hz.
This commit is contained in:
Jeff Brown
2010-08-21 09:35:28 -07:00
committed by Android Git Automerger
2 changed files with 2 additions and 5 deletions

View File

@@ -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;
}

View File

@@ -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;