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 476 (pending_async_touchmove_ &&
477 !pending_async_touchmove_->CanCoalesceWith(touch));
480 if (!pending_async_touchmove_) {
481 pending_async_touchmove_.reset(new TouchEventWithLatencyInfo(touch));
483 DCHECK(pending_async_touchmove_->CanCoalesceWith(touch));
484 pending_async_touchmove_->CoalesceWith(touch);
502 if (pending_async_touchmove_) {
503 if (pending_async_touchmove_->CanCoalesceWith(touch)) {
504 pending_async_touchmove_->CoalesceWith(touch);
505 pending_async_touchmove_->event.cancelable = !send_touch_events_async_
    [all...]
touch_event_queue.h 235 // and ack'ed immediately, but remain buffered in |pending_async_touchmove_|
240 scoped_ptr<TouchEventWithLatencyInfo> pending_async_touchmove_; member in class:content::TouchEventQueue

Completed in 1706 milliseconds