Chromium Code Reviews| Index: content/common/input/synthetic_pointer_action_list_params.h |
| diff --git a/content/common/input/synthetic_pointer_action_list_params.h b/content/common/input/synthetic_pointer_action_list_params.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..915e33154f047e62ffee5855670c2ccd4000865b |
| --- /dev/null |
| +++ b/content/common/input/synthetic_pointer_action_list_params.h |
| @@ -0,0 +1,39 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CONTENT_COMMON_INPUT_SYNTHETIC_POINTER_ACTION_LIST_PARAMS_H_ |
| +#define CONTENT_COMMON_INPUT_SYNTHETIC_POINTER_ACTION_LIST_PARAMS_H_ |
| + |
| +#include <vector> |
| +#include "content/common/content_export.h" |
| +#include "content/common/input/input_param_traits.h" |
| +#include "content/common/input/synthetic_gesture_params.h" |
| +#include "content/common/input/synthetic_pointer_action_params.h" |
| + |
| +using blink::WebTouchEvent; |
| + |
| +namespace content { |
| + |
| +struct CONTENT_EXPORT SyntheticPointerActionListParams |
| + : public SyntheticGestureParams { |
| + public: |
| + SyntheticPointerActionListParams(); |
| + SyntheticPointerActionListParams(SyntheticPointerActionParams param); |
|
tdresser
2016/10/26 18:28:40
Do we need this, or could we just pass in a vector
lanwei
2016/10/30 23:23:13
Because most of the cases that we will only have o
tdresser
2016/10/31 14:22:57
Acknowledged.
|
| + SyntheticPointerActionListParams( |
| + std::vector<SyntheticPointerActionParams>& param_list); |
| + SyntheticPointerActionListParams( |
| + const SyntheticPointerActionListParams& other); |
|
tdresser
2016/10/26 18:28:40
Do we need to be able to copy these?
lanwei
2016/10/30 23:23:13
Yes, because SyntheticGestureParams has it, all of
|
| + ~SyntheticPointerActionListParams() override; |
| + |
| + GestureType GetGestureType() const override; |
| + |
| + std::vector<SyntheticPointerActionParams> param_list; |
| + |
| + static const SyntheticPointerActionListParams* Cast( |
| + const SyntheticGestureParams* gesture_params); |
| +}; |
| + |
| +} // namespace content |
| + |
| +#endif // CONTENT_COMMON_INPUT_SYNTHETIC_POINTER_ACTION_LIST_PARAMS_H_ |