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

Unified Diff: content/browser/renderer_host/input/synthetic_gesture.cc

Issue 2336803003: Make SyntheticPointerAction to flush the pointer action sequence (Closed)
Patch Set: synthetic action 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/browser/renderer_host/input/synthetic_gesture.cc
diff --git a/content/browser/renderer_host/input/synthetic_gesture.cc b/content/browser/renderer_host/input/synthetic_gesture.cc
index cbe9e14566ca9d67adb711f9131d4360dacad501..fd09c2ab43db7fc96da5afafce6c833399f702c3 100644
--- a/content/browser/renderer_host/input/synthetic_gesture.cc
+++ b/content/browser/renderer_host/input/synthetic_gesture.cc
@@ -43,6 +43,9 @@ std::unique_ptr<SyntheticGesture> SyntheticGesture::Create(
case SyntheticGestureParams::TAP_GESTURE:
return CreateGesture<SyntheticTapGesture,
SyntheticTapGestureParams>(gesture_params);
+ case SyntheticGestureParams::POINTER_ACTION_LIST:
+ return CreateGesture<SyntheticPointerAction,
+ SyntheticPointerActionListParams>(gesture_params);
default:
NOTREACHED() << "Invalid synthetic gesture type";
return nullptr;

Powered by Google App Engine
This is Rietveld 408576698