Searched refs:gesture_params (Results 1 - 15 of 15) sorted by relevance

/external/chromium_org/content/browser/renderer_host/input/
H A Dsynthetic_gesture.cc18 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);
17 CreateGesture( const SyntheticGestureParams& gesture_params) argument
29 Create( const SyntheticGestureParams& gesture_params) argument
H A Dsynthetic_gesture.h34 const SyntheticGestureParams& gesture_params);
/external/chromium_org/content/common/input/
H A Dsynthetic_pinch_gesture_params.cc31 const SyntheticGestureParams* gesture_params) {
32 DCHECK(gesture_params);
33 DCHECK_EQ(PINCH_GESTURE, gesture_params->GetGestureType());
34 return static_cast<const SyntheticPinchGestureParams*>(gesture_params);
30 Cast( const SyntheticGestureParams* gesture_params) argument
H A Dsynthetic_tap_gesture_params.cc29 const SyntheticGestureParams* gesture_params) {
30 DCHECK(gesture_params);
31 DCHECK_EQ(TAP_GESTURE, gesture_params->GetGestureType());
32 return static_cast<const SyntheticTapGestureParams*>(gesture_params);
28 Cast( const SyntheticGestureParams* gesture_params) argument
H A Dsynthetic_gesture_packet.h21 void set_gesture_params(scoped_ptr<SyntheticGestureParams> gesture_params) { argument
22 gesture_params_ = gesture_params.Pass();
24 const SyntheticGestureParams* gesture_params() const { function in class:content::SyntheticGesturePacket
H A Dsynthetic_smooth_scroll_gesture_params.cc36 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);
35 Cast( const SyntheticGestureParams* gesture_params) argument
H A Dinput_param_traits.cc20 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...]
H A Dinput_param_traits_unittest.cc71 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...]
H A Dsynthetic_pinch_gesture_params.h29 const SyntheticGestureParams* gesture_params);
H A Dsynthetic_tap_gesture_params.h27 const SyntheticGestureParams* gesture_params);
H A Dsynthetic_smooth_scroll_gesture_params.h33 const SyntheticGestureParams* gesture_params);
/external/chromium_org/content/renderer/gpu/
H A Dgpu_benchmarking_extension.cc493 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
[all...]
/external/chromium_org/content/renderer/
H A Drender_widget.h200 scoped_ptr<SyntheticGestureParams> gesture_params,
H A Drender_widget.cc1421 scoped_ptr<SyntheticGestureParams> gesture_params,
1428 gesture_packet.set_gesture_params(gesture_params.Pass());
1420 QueueSyntheticGesture( scoped_ptr<SyntheticGestureParams> gesture_params, const SyntheticGestureCompletionCallback& callback) argument
/external/chromium_org/content/browser/renderer_host/
H A Drender_widget_host_impl.cc1662 SyntheticGesture::Create(*gesture_packet.gesture_params()),

Completed in 170 milliseconds