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

  /external/chromium_org/content/common/input/
synthetic_tap_gesture_params.cc 29 const SyntheticGestureParams* gesture_params) {
30 DCHECK(gesture_params);
31 DCHECK_EQ(TAP_GESTURE, gesture_params->GetGestureType());
32 return static_cast<const SyntheticTapGestureParams*>(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.cc 31 const SyntheticGestureParams* gesture_params) {
32 DCHECK(gesture_params);
33 DCHECK_EQ(PINCH_GESTURE, gesture_params->GetGestureType());
34 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);
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 71 ASSERT_EQ(!!a->gesture_params(), !!b->gesture_params());
72 if (!a->gesture_params()) return;
73 ASSERT_EQ(a->gesture_params()->GetGestureType(),
74 b->gesture_params()->GetGestureType());
75 switch (a->gesture_params()->GetGestureType()) {
77 Compare(SyntheticSmoothScrollGestureParams::Cast(a->gesture_params()),
78 SyntheticSmoothScrollGestureParams::Cast(b->gesture_params()));
81 Compare(SyntheticPinchGestureParams::Cast(a->gesture_params()),
82 SyntheticPinchGestureParams::Cast(b->gesture_params()));
    [all...]
synthetic_pinch_gesture_params.h 29 const SyntheticGestureParams* gesture_params);
synthetic_smooth_scroll_gesture_params.h 33 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 34 const SyntheticGestureParams& gesture_params);
  /external/chromium_org/content/renderer/gpu/
gpu_benchmarking_extension.cc 493 scoped_ptr<SyntheticSmoothScrollGestureParams> gesture_params(
505 gesture_params->gesture_source_type =
509 gesture_params->speed_in_pixels_s = args[4]->IntegerValue();
510 gesture_params->prevent_fling = args[5]->BooleanValue();
524 gesture_params->anchor = anchor;
543 gesture_params->distances.push_back(distance);
549 gesture_params.PassAs<SyntheticGestureParams>(),
583 scoped_ptr<SyntheticSmoothScrollGestureParams> gesture_params(
589 gesture_params->speed_in_pixels_s = args[5]->IntegerValue();
633 gesture_params->anchor = start
    [all...]
  /external/chromium_org/content/renderer/
render_widget.h 200 scoped_ptr<SyntheticGestureParams> gesture_params,
render_widget.cc     [all...]
  /external/chromium_org/content/browser/renderer_host/
render_widget_host_impl.cc     [all...]

Completed in 425 milliseconds