Index: content/browser/renderer_host/render_widget_host_impl.h |
diff --git a/content/browser/renderer_host/render_widget_host_impl.h b/content/browser/renderer_host/render_widget_host_impl.h |
index 617a44d1344193f280251d9a9e40fd5dbe52b989..1d29129c4082bba7b33682085e89f9cd73359c1a 100644 |
--- a/content/browser/renderer_host/render_widget_host_impl.h |
+++ b/content/browser/renderer_host/render_widget_host_impl.h |
@@ -34,6 +34,7 @@ |
#include "content/browser/renderer_host/render_widget_host_view_base.h" |
#include "content/common/input/input_event_ack_state.h" |
#include "content/common/input/synthetic_gesture_packet.h" |
+#include "content/common/input/synthetic_pointer_action_params.h" |
#include "content/common/view_message_enums.h" |
#include "content/public/browser/readback_types.h" |
#include "content/public/browser/render_widget_host.h" |
@@ -323,6 +324,10 @@ class CONTENT_EXPORT RenderWidgetHostImpl : public RenderWidgetHost, |
std::unique_ptr<SyntheticGesture> synthetic_gesture, |
const base::Callback<void(SyntheticGesture::Result)>& on_complete); |
+ void QueueSyntheticPointerAction( |
+ const SyntheticPointerActionParams& gesture_params, |
+ const base::Callback<void(SyntheticGesture::Result)>& on_complete); |
+ |
void CancelUpdateTextDirection(); |
// Update the composition node of the renderer (or WebKit). |
@@ -624,6 +629,8 @@ class CONTENT_EXPORT RenderWidgetHostImpl : public RenderWidgetHost, |
void OnSyntheticGestureCompleted(SyntheticGesture::Result result); |
+ void OnSyntheticPointerActionCompleted(SyntheticGesture::Result result); |
+ |
// Called when there is a new auto resize (using a post to avoid a stack |
// which may get in recursive loops). |
void DelayedAutoResized(); |