HomeSort by relevance Sort by last modified time
    Searched refs:pending_async_touchmove_ (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/content/browser/renderer_host/input/
touch_event_queue.cc 491 (pending_async_touchmove_ &&
492 !pending_async_touchmove_->CanCoalesceWith(touch));
495 if (!pending_async_touchmove_) {
496 pending_async_touchmove_.reset(new TouchEventWithLatencyInfo(touch));
498 DCHECK(pending_async_touchmove_->CanCoalesceWith(touch));
499 pending_async_touchmove_->CoalesceWith(touch);
517 if (pending_async_touchmove_) {
518 if (pending_async_touchmove_->CanCoalesceWith(touch)) {
519 pending_async_touchmove_->CoalesceWith(touch);
520 pending_async_touchmove_->event.cancelable = !send_touch_events_async_
    [all...]
touch_event_queue.h 231 // and ack'ed immediately, but remain buffered in |pending_async_touchmove_|
236 scoped_ptr<TouchEventWithLatencyInfo> pending_async_touchmove_; member in class:content::TouchEventQueue

Completed in 119 milliseconds