/external/chromium_org/content/common/input/ |
synthetic_tap_gesture_params.cc | 27 const SyntheticGestureParams* gesture_params) { 28 DCHECK(gesture_params); 29 DCHECK_EQ(TAP_GESTURE, gesture_params->GetGestureType()); 30 return static_cast<const SyntheticTapGestureParams*>(gesture_params);
|
input_param_traits.cc | 20 scoped_ptr<GestureType> gesture_params(new GestureType); 21 if (!ReadParam(m, iter, gesture_params.get())) 24 return gesture_params.template PassAs<content::SyntheticGestureParams>(); 58 DCHECK(p.gesture_params()); 59 WriteParam(m, p.gesture_params()->GetGestureType()); 60 switch (p.gesture_params()->GetGestureType()) { 63 p.gesture_params())); 67 p.gesture_params())); 71 p.gesture_params())); 82 scoped_ptr<content::SyntheticGestureParams> gesture_params; [all...] |
input_param_traits_unittest.cc | 70 ASSERT_EQ(!!a->gesture_params(), !!b->gesture_params()); 71 if (!a->gesture_params()) return; 72 ASSERT_EQ(a->gesture_params()->GetGestureType(), 73 b->gesture_params()->GetGestureType()); 74 switch (a->gesture_params()->GetGestureType()) { 76 Compare(SyntheticSmoothScrollGestureParams::Cast(a->gesture_params()), 77 SyntheticSmoothScrollGestureParams::Cast(b->gesture_params())); 80 Compare(SyntheticPinchGestureParams::Cast(a->gesture_params()), 81 SyntheticPinchGestureParams::Cast(b->gesture_params())); [all...] |
synthetic_pinch_gesture_params.cc | 33 const SyntheticGestureParams* gesture_params) { 34 DCHECK(gesture_params); 35 DCHECK_EQ(PINCH_GESTURE, gesture_params->GetGestureType()); 36 return static_cast<const SyntheticPinchGestureParams*>(gesture_params);
|
synthetic_smooth_scroll_gesture_params.cc | 36 const SyntheticGestureParams* gesture_params) { 37 DCHECK(gesture_params); 38 DCHECK_EQ(SMOOTH_SCROLL_GESTURE, gesture_params->GetGestureType()); 39 return static_cast<const SyntheticSmoothScrollGestureParams*>(gesture_params);
|
synthetic_gesture_packet.h | 21 void set_gesture_params(scoped_ptr<SyntheticGestureParams> gesture_params) { 22 gesture_params_ = gesture_params.Pass(); 24 const SyntheticGestureParams* gesture_params() const { function in class:content::SyntheticGesturePacket
|
synthetic_pinch_gesture_params.h | 30 const SyntheticGestureParams* gesture_params);
|
synthetic_smooth_scroll_gesture_params.h | 31 const SyntheticGestureParams* gesture_params);
|
synthetic_tap_gesture_params.h | 27 const SyntheticGestureParams* gesture_params);
|
/external/chromium_org/content/browser/renderer_host/input/ |
synthetic_gesture.cc | 18 const SyntheticGestureParams& gesture_params) { 20 new GestureType(*GestureParamsType::Cast(&gesture_params))); 30 const SyntheticGestureParams& gesture_params) { 31 switch (gesture_params.GetGestureType()) { 34 SyntheticSmoothScrollGestureParams>(gesture_params); 37 SyntheticPinchGestureParams>(gesture_params); 40 SyntheticTapGestureParams>(gesture_params);
|
synthetic_gesture.h | 35 const SyntheticGestureParams& gesture_params);
|
/external/chromium_org/content/renderer/gpu/ |
gpu_benchmarking_extension.cc | 536 scoped_ptr<SyntheticSmoothScrollGestureParams> gesture_params( 548 gesture_params->gesture_source_type = 557 gesture_params->distance.set_y(distance); 559 gesture_params->distance.set_y(-distance); 561 gesture_params->distance.set_x(distance); 563 gesture_params->distance.set_x(-distance); 569 gesture_params->speed_in_pixels_s = args[4]->IntegerValue(); 570 gesture_params->prevent_fling = args[5]->BooleanValue(); 575 gesture_params->anchor.SetPoint(rect.width / 2, rect.height / 2); 577 gesture_params->anchor.SetPoint [all...] |
/external/chromium_org/content/renderer/ |
render_widget.h | 186 scoped_ptr<SyntheticGestureParams> gesture_params,
|
render_widget.cc | [all...] |
/external/chromium_org/content/browser/renderer_host/ |
render_widget_host_impl.cc | [all...] |