Home | History | Annotate | Download | only in renderer_host

Lines Matching defs:wheel

46         const blink::WebMouseWheelEvent& wheel =
48 if (!wheel.hasPreciseScrollingDeltas ||
49 wheel.phase == blink::WebMouseWheelEvent::PhaseEnded ||
50 wheel.phase == blink::WebMouseWheelEvent::PhaseCancelled) {
188 // Only wheel events with precise deltas (i.e. from trackpad) contribute
190 const blink::WebMouseWheelEvent& wheel =
192 return !wheel.hasPreciseScrollingDeltas;
211 const blink::WebMouseWheelEvent& wheel =
213 if (!wheel.hasPreciseScrollingDeltas)
216 ProcessOverscroll(wheel.deltaX * wheel.accelerationRatioX,
217 wheel.deltaY * wheel.accelerationRatioY,
218 wheel.type);