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..d66c1840f4167cad7e97bfe7e6495158f378b879 |
| --- /dev/null |
| +++ b/content/common/input/synthetic_pointer_action_list_params.h |
| @@ -0,0 +1,42 @@ |
| +// 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/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: |
| + using ParamList = std::vector<SyntheticPointerActionParams>; |
| + |
| + SyntheticPointerActionListParams(); |
| + SyntheticPointerActionListParams(ParamList& param_list); |
|
Navid Zolghadr
2016/12/06 17:05:38
Could this be const &?
lanwei
2016/12/07 19:04:27
Done.
|
| + SyntheticPointerActionListParams( |
| + const SyntheticPointerActionListParams& other); |
| + ~SyntheticPointerActionListParams() override; |
| + |
| + GestureType GetGestureType() const override; |
| + |
| + void PushPointerActionParams(const SyntheticPointerActionParams& param); |
| + void PushPointerActionParams(int index, |
| + const SyntheticPointerActionParams& param); |
| + |
| + std::vector<ParamList> params; |
|
Navid Zolghadr
2016/12/06 17:05:38
Can we make this private?
lanwei
2016/12/07 19:04:27
Because this has to pass through IPC channel, it i
|
| + |
| + static const SyntheticPointerActionListParams* Cast( |
| + const SyntheticGestureParams* gesture_params); |
| +}; |
| + |
| +} // namespace content |
| + |
| +#endif // CONTENT_COMMON_INPUT_SYNTHETIC_POINTER_ACTION_LIST_PARAMS_H_ |