summaryrefslogtreecommitdiff
path: root/chromium/content/browser/renderer_host/input/touch_emulator_client.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/browser/renderer_host/input/touch_emulator_client.h')
-rw-r--r--chromium/content/browser/renderer_host/input/touch_emulator_client.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/chromium/content/browser/renderer_host/input/touch_emulator_client.h b/chromium/content/browser/renderer_host/input/touch_emulator_client.h
index 991e0e16d21..4f398b0ba8c 100644
--- a/chromium/content/browser/renderer_host/input/touch_emulator_client.h
+++ b/chromium/content/browser/renderer_host/input/touch_emulator_client.h
@@ -13,6 +13,8 @@
namespace content {
+class RenderWidgetHostViewBase;
+
// Emulates touch input with mouse and keyboard.
class CONTENT_EXPORT TouchEmulatorClient {
public:
@@ -20,7 +22,8 @@ class CONTENT_EXPORT TouchEmulatorClient {
virtual void ForwardEmulatedGestureEvent(
const blink::WebGestureEvent& event) = 0;
- virtual void ForwardEmulatedTouchEvent(const blink::WebTouchEvent& event) = 0;
+ virtual void ForwardEmulatedTouchEvent(const blink::WebTouchEvent& event,
+ RenderWidgetHostViewBase* target) = 0;
virtual void SetCursor(const WebCursor& cursor) = 0;
virtual void ShowContextMenuAtPoint(const gfx::Point& point,
const ui::MenuSourceType source_type) = 0;