diff options
| author | 2011-04-19 15:37:32 -0700 | |
|---|---|---|
| committer | 2011-04-19 15:37:32 -0700 | |
| commit | 3f14891fc9e764d97de07b109f066aedfff90c2e (patch) | |
| tree | 7d026487ee719489cea2c1237901ef6cf325efe2 /libs/utils/Looper.cpp | |
| parent | 05d30b14843bf7cf252873f4d0d39706878b28c2 (diff) | |
| parent | 2352b978a3c94cd88f41d0d908f961333fdac1e9 (diff) | |
Merge "Initial checkin of spot presentation for touchpad gestures."
Diffstat (limited to 'libs/utils/Looper.cpp')
| -rw-r--r-- | libs/utils/Looper.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/libs/utils/Looper.cpp b/libs/utils/Looper.cpp index d5dd126065e7..b54fb9dd7353 100644 --- a/libs/utils/Looper.cpp +++ b/libs/utils/Looper.cpp @@ -662,7 +662,8 @@ void Looper::wakeAndLock() {  #endif  void Looper::sendMessage(const sp<MessageHandler>& handler, const Message& message) { -    sendMessageAtTime(LLONG_MIN, handler, message); +    nsecs_t now = systemTime(SYSTEM_TIME_MONOTONIC); +    sendMessageAtTime(now, handler, message);  }  void Looper::sendMessageDelayed(nsecs_t uptimeDelay, const sp<MessageHandler>& handler, |