Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1001)

Side by Side Diff: content/common/input/synthetic_pointer_action_list_params.h

Issue 2336803003: Make SyntheticPointerAction to flush the pointer action sequence (Closed)
Patch Set: return invaid when index is out bound Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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);
tdresser 2016/12/13 14:37:43 Is this copy constructor required? Could this obje
lanwei 2016/12/18 17:35:55 This is required for all the subclass of Synthetic
tdresser 2016/12/19 15:11:53 Acknowledged.
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698