| Index: runtime/bin/eventhandler_android.cc
|
| diff --git a/runtime/bin/eventhandler_android.cc b/runtime/bin/eventhandler_android.cc
|
| index 10f482b0c91a652ccd51b8a37348ad20e603f3b9..bbc8acbc8bec5ea726fc780a7cb6b62bb49d7e20 100644
|
| --- a/runtime/bin/eventhandler_android.cc
|
| +++ b/runtime/bin/eventhandler_android.cc
|
| @@ -361,7 +361,7 @@ int64_t EventHandlerImplementation::GetTimeout() {
|
|
|
| void EventHandlerImplementation::HandleTimeout() {
|
| if (timeout_ != kInfinityTimeout) {
|
| - intptr_t millis = timeout_ - TimerUtils::GetCurrentTimeMilliseconds();
|
| + int64_t millis = timeout_ - TimerUtils::GetCurrentTimeMilliseconds();
|
| if (millis <= 0) {
|
| DartUtils::PostNull(timeout_port_);
|
| timeout_ = kInfinityTimeout;
|
|
|