OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CONTENT_COMMON_INPUT_SYNTHETIC_POINTER_ACTION_LIST_PARAMS_H_ |
| 6 #define CONTENT_COMMON_INPUT_SYNTHETIC_POINTER_ACTION_LIST_PARAMS_H_ |
| 7 |
| 8 #include <vector> |
| 9 #include "content/common/content_export.h" |
| 10 #include "content/common/input/synthetic_gesture_params.h" |
| 11 #include "content/common/input/synthetic_pointer_action_params.h" |
| 12 |
| 13 using blink::WebTouchEvent; |
| 14 |
| 15 namespace content { |
| 16 |
| 17 struct CONTENT_EXPORT SyntheticPointerActionListParams |
| 18 : public SyntheticGestureParams { |
| 19 public: |
| 20 using ParamList = std::vector<SyntheticPointerActionParams>; |
| 21 |
| 22 SyntheticPointerActionListParams(); |
| 23 SyntheticPointerActionListParams(const ParamList& param_list); |
| 24 SyntheticPointerActionListParams( |
| 25 const SyntheticPointerActionListParams& other); |
| 26 ~SyntheticPointerActionListParams() override; |
| 27 |
| 28 GestureType GetGestureType() const override; |
| 29 |
| 30 void PushPointerActionParams(const SyntheticPointerActionParams& param); |
| 31 void PushPointerActionParamsList(const ParamList& param_list); |
| 32 |
| 33 std::vector<ParamList> params; |
| 34 |
| 35 static const SyntheticPointerActionListParams* Cast( |
| 36 const SyntheticGestureParams* gesture_params); |
| 37 }; |
| 38 |
| 39 } // namespace content |
| 40 |
| 41 #endif // CONTENT_COMMON_INPUT_SYNTHETIC_POINTER_ACTION_LIST_PARAMS_H_ |
OLD | NEW |