Chromium Code Reviews| 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; | |
|
samuong
2016/12/20 05:13:26
is this needed?
| |
| 15 | |
| 16 namespace content { | |
| 17 | |
| 18 struct CONTENT_EXPORT SyntheticPointerActionListParams | |
| 19 : public SyntheticGestureParams { | |
| 20 public: | |
| 21 SyntheticPointerActionListParams(); | |
| 22 SyntheticPointerActionListParams(SyntheticPointerActionParams param); | |
| 23 SyntheticPointerActionListParams( | |
| 24 std::vector<SyntheticPointerActionParams>& param_list); | |
| 25 SyntheticPointerActionListParams( | |
| 26 const SyntheticPointerActionListParams& other); | |
| 27 ~SyntheticPointerActionListParams() override; | |
| 28 | |
| 29 GestureType GetGestureType() const override; | |
| 30 | |
| 31 std::vector<SyntheticPointerActionParams> param_list; | |
| 32 | |
| 33 static const SyntheticPointerActionListParams* Cast( | |
| 34 const SyntheticGestureParams* gesture_params); | |
| 35 }; | |
| 36 | |
| 37 } // namespace content | |
| 38 | |
| 39 #endif // CONTENT_COMMON_INPUT_SYNTHETIC_POINTER_ACTION_LIST_PARAMS_H_ | |
| OLD | NEW |