Home
last modified time | relevance | path

Searched refs:timeout_handler_ (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/ui/events/gesture_detection/
Dgesture_detector.cc168 : timeout_handler_(new TimeoutGestureHandler(config, this)), in GestureDetector()
286 bool had_tap_message = timeout_handler_->HasTimeout(TAP); in OnTouchEvent()
288 timeout_handler_->StopTimeout(TAP); in OnTouchEvent()
301 timeout_handler_->StartTimeout(TAP); in OnTouchEvent()
318 timeout_handler_->StartTimeout(SHOW_PRESS); in OnTouchEvent()
320 timeout_handler_->StartTimeout(LONG_PRESS); in OnTouchEvent()
342 timeout_handler_->Stop(); in OnTouchEvent()
415 timeout_handler_->StopTimeout(SHOW_PRESS); in OnTouchEvent()
416 timeout_handler_->StopTimeout(LONG_PRESS); in OnTouchEvent()
437 if (timeout_handler_->HasTimeout(TAP)) { in SetDoubleTapListener()
[all …]
Dgesture_detector.h167 scoped_ptr<TimeoutGestureHandler> timeout_handler_; variable
/external/chromium_org/content/browser/renderer_host/input/
Dtouch_event_queue.cc386 timeout_handler_.reset( in TouchEventQueue()
437 if (timeout_handler_ && timeout_handler_->ConfirmTouchEvent(ack_result)) in ProcessTouchAck()
542 if (dispatching_touch_ && timeout_handler_) in ForwardNextEventToRenderer()
543 timeout_handler_->StartIfNecessary(touch); in ForwardNextEventToRenderer()
642 if (timeout_handler_) in SetAckTimeoutEnabled()
643 timeout_handler_->SetEnabled(enabled); in SetAckTimeoutEnabled()
647 return timeout_handler_ && timeout_handler_->enabled(); in IsAckTimeoutEnabled()
655 return timeout_handler_ && timeout_handler_->IsTimeoutTimerRunning(); in IsTimeoutRunningForTesting()
721 if (timeout_handler_ && timeout_handler_->FilterEvent(event)) in FilterBeforeForwarding()
Dtimeout_monitor.cc13 : timeout_handler_(timeout_handler) { in TimeoutMonitor()
14 DCHECK(!timeout_handler_.is_null()); in TimeoutMonitor()
70 timeout_handler_.Run(); in CheckTimedOut()
Dtimeout_monitor.h36 TimeoutHandler timeout_handler_; variable
Dtouch_event_queue.h223 scoped_ptr<TouchTimeoutHandler> timeout_handler_; variable