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

  /external/chromium_org/content/browser/renderer_host/input/
input_router_impl.h 178 // Forwards a valid |next_mouse_move_| if |type| is MouseMove.
222 // (Similar to |next_mouse_move_|.) The next SelectRange to send, if any.
228 // (Similar to |next_mouse_move_|.) The next MoveCaret to send, if any.
237 scoped_ptr<MouseEventWithLatencyInfo> next_mouse_move_; member in class:content::InputRouterImpl
244 // (Similar to |next_mouse_move_|.) The next mouse wheel events to send.
input_router_impl.cc 209 if (!next_mouse_move_)
210 next_mouse_move_.reset(new MouseEventWithLatencyInfo(mouse_event));
212 next_mouse_move_->CoalesceWith(mouse_event);
337 next_mouse_move_.reset();
379 next_mouse_move_.reset();
590 if (next_mouse_move_) {
591 DCHECK(next_mouse_move_->event.type == WebInputEvent::MouseMove);
593 = next_mouse_move_.Pass();

Completed in 85 milliseconds