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

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

Issue 2336803003: Make SyntheticPointerAction to flush the pointer action sequence (Closed)
Patch Set: controller 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
« no previous file with comments | « no previous file | content/browser/renderer_host/input/synthetic_gesture_controller_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « no previous file | content/browser/renderer_host/input/synthetic_gesture_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698