am 99e23088: am 150e0e87: Merge "fix return value scale of notifyANR()"

* commit '99e23088843eddede29d0fc5ca30a83f147f31b0':
  fix return value scale of notifyANR()
This commit is contained in:
Michael Wright
2015-04-15 11:21:06 +00:00
committed by Android Git Automerger

View File

@ -148,7 +148,7 @@ final class InputMonitor implements InputManagerService.WindowManagerCallbacks {
if (timeout >= 0) {
// The activity manager declined to abort dispatching.
// Wait a bit longer and timeout again later.
return timeout;
return timeout * 1000000L; // nanoseconds
}
} catch (RemoteException ex) {
}