diff options
| author | 2015-04-15 11:21:06 +0000 | |
|---|---|---|
| committer | 2015-04-15 11:21:06 +0000 | |
| commit | 6fb80b704e7808e4e7cd15f6ccade1e4b6406b56 (patch) | |
| tree | ca01b3737b9f1235213c8642d42c527f48c57142 | |
| parent | 1f440cb0b8d2c84fd1bb2e06fcc94d86717f648a (diff) | |
| parent | 99e23088843eddede29d0fc5ca30a83f147f31b0 (diff) | |
am 99e23088: am 150e0e87: Merge "fix return value scale of notifyANR()"
* commit '99e23088843eddede29d0fc5ca30a83f147f31b0':
fix return value scale of notifyANR()
| -rw-r--r-- | services/core/java/com/android/server/wm/InputMonitor.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/wm/InputMonitor.java b/services/core/java/com/android/server/wm/InputMonitor.java index 27ac32aae305..ad50e05ad459 100644 --- a/services/core/java/com/android/server/wm/InputMonitor.java +++ b/services/core/java/com/android/server/wm/InputMonitor.java @@ -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) { } |