Home
last modified time | relevance | path

Searched refs:SyntheticTapGestureParams (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/content/common/input/
Dsynthetic_tap_gesture_params.cc11 SyntheticTapGestureParams::SyntheticTapGestureParams() : duration_ms(0) {} in SyntheticTapGestureParams() function in content::SyntheticTapGestureParams
13 SyntheticTapGestureParams::SyntheticTapGestureParams( in SyntheticTapGestureParams() function in content::SyntheticTapGestureParams
14 const SyntheticTapGestureParams& other) in SyntheticTapGestureParams()
19 SyntheticTapGestureParams::~SyntheticTapGestureParams() {} in ~SyntheticTapGestureParams()
21 SyntheticGestureParams::GestureType SyntheticTapGestureParams::GetGestureType() in GetGestureType()
26 const SyntheticTapGestureParams* SyntheticTapGestureParams::Cast( in Cast()
30 return static_cast<const SyntheticTapGestureParams*>(gesture_params); in Cast()
Dsynthetic_tap_gesture_params.h14 struct CONTENT_EXPORT SyntheticTapGestureParams struct
17 SyntheticTapGestureParams();
18 SyntheticTapGestureParams(const SyntheticTapGestureParams& other);
19 virtual ~SyntheticTapGestureParams();
26 static const SyntheticTapGestureParams* Cast( argument
Dinput_param_traits_unittest.cc59 static void Compare(const SyntheticTapGestureParams* a, in Compare()
60 const SyntheticTapGestureParams* b) { in Compare()
84 Compare(SyntheticTapGestureParams::Cast(a->gesture_params()), in Compare()
85 SyntheticTapGestureParams::Cast(b->gesture_params())); in Compare()
221 TEST_F(InputParamTraitsTest, SyntheticTapGestureParams) { in TEST_F() argument
222 scoped_ptr<SyntheticTapGestureParams> gesture_params( in TEST_F()
223 new SyntheticTapGestureParams); in TEST_F()
Dinput_param_traits.cc70 WriteParam(m, *content::SyntheticTapGestureParams::Cast( in Write()
95 ReadGestureParams<content::SyntheticTapGestureParams>(m, iter); in Read()
122 *content::SyntheticTapGestureParams::Cast(p.gesture_params()), in Log()
/external/chromium_org/content/browser/renderer_host/input/
Dsynthetic_tap_gesture.h18 explicit SyntheticTapGesture(const SyntheticTapGestureParams& params);
38 SyntheticTapGestureParams params_;
Dsynthetic_gesture.cc40 SyntheticTapGestureParams>(gesture_params); in Create()
Dsynthetic_tap_gesture.cc24 const SyntheticTapGestureParams& params) in SyntheticTapGesture()
Dsynthetic_gesture_controller_unittest.cc771 SyntheticTapGestureParams params; in TEST_F()
793 SyntheticTapGestureParams params; in TEST_F()
/external/chromium_org/content/common/
Dinput_messages.h80 IPC_STRUCT_TRAITS_BEGIN(content::SyntheticTapGestureParams)
/external/chromium_org/content/renderer/gpu/
Dgpu_benchmarking_extension.cc666 scoped_ptr<SyntheticTapGestureParams> gesture_params( in BeginTap()
667 new SyntheticTapGestureParams); in BeginTap()