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

Unified 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 side-by-side diff with in-line comments
Download patch
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..86c903617d6f777bb988d14cf973fcb0983b87bf
--- /dev/null
+++ b/content/common/input/synthetic_pointer_action_list_params.h
@@ -0,0 +1,41 @@
+// 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(const ParamList& param_list);
+ SyntheticPointerActionListParams(
+ 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.
+ ~SyntheticPointerActionListParams() override;
+
+ GestureType GetGestureType() const override;
+
+ void PushPointerActionParams(const SyntheticPointerActionParams& param);
+ void PushPointerActionParamsList(const ParamList& param_list);
+
+ std::vector<ParamList> params;
+
+ static const SyntheticPointerActionListParams* Cast(
+ const SyntheticGestureParams* gesture_params);
+};
+
+} // namespace content
+
+#endif // CONTENT_COMMON_INPUT_SYNTHETIC_POINTER_ACTION_LIST_PARAMS_H_

Powered by Google App Engine
This is Rietveld 408576698