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 ebe8712e15c26c9a9a96500e2850b1499fa25ce4..a6aa6bd3c7ee9d01ccd56d67f417c452ab41e3e9 100644 |
--- a/content/browser/renderer_host/input/synthetic_gesture.cc |
+++ b/content/browser/renderer_host/input/synthetic_gesture.cc |
@@ -7,6 +7,7 @@ |
#include "base/logging.h" |
#include "content/browser/renderer_host/input/synthetic_gesture_target.h" |
#include "content/browser/renderer_host/input/synthetic_pinch_gesture.h" |
+#include "content/browser/renderer_host/input/synthetic_pointer_action.h" |
#include "content/browser/renderer_host/input/synthetic_smooth_drag_gesture.h" |
#include "content/browser/renderer_host/input/synthetic_smooth_scroll_gesture.h" |
#include "content/browser/renderer_host/input/synthetic_tap_gesture.h" |
@@ -42,6 +43,9 @@ scoped_ptr<SyntheticGesture> SyntheticGesture::Create( |
case SyntheticGestureParams::TAP_GESTURE: |
return CreateGesture<SyntheticTapGesture, |
SyntheticTapGestureParams>(gesture_params); |
+ case SyntheticGestureParams::POINTER_ACTION: |
+ return CreateGesture<SyntheticPointerAction, |
+ SyntheticPointerActionParams>(gesture_params); |
} |
NOTREACHED() << "Invalid synthetic gesture type"; |
return scoped_ptr<SyntheticGesture>(); |