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/input_param_traits.h" |
| 11 #include "content/common/input/synthetic_gesture_params.h" |
| 12 #include "content/common/input/synthetic_pointer_action_params.h" |
| 13 |
| 14 using blink::WebTouchEvent; |
| 15 |
| 16 namespace content { |
| 17 |
| 18 struct CONTENT_EXPORT SyntheticPointerActionListParams |
| 19 : public SyntheticGestureParams { |
| 20 public: |
| 21 SyntheticPointerActionListParams(); |
| 22 SyntheticPointerActionListParams(SyntheticPointerActionParams param); |
| 23 SyntheticPointerActionListParams( |
| 24 const SyntheticPointerActionListParams& other); |
| 25 ~SyntheticPointerActionListParams() override; |
| 26 |
| 27 GestureType GetGestureType() const override; |
| 28 |
| 29 std::vector<SyntheticPointerActionParams> param_list; |
| 30 |
| 31 static const SyntheticPointerActionListParams* Cast( |
| 32 const SyntheticGestureParams* gesture_params); |
| 33 }; |
| 34 |
| 35 } // namespace content |
| 36 |
| 37 #endif // CONTENT_COMMON_INPUT_SYNTHETIC_POINTER_ACTION_LIST_PARAMS_H_ |
OLD | NEW |