| Index: content/port/browser/render_widget_host_view_port.h
|
| diff --git a/content/port/browser/render_widget_host_view_port.h b/content/port/browser/render_widget_host_view_port.h
|
| index 6db623177893f041bcae1ed094119354cd418f02..d5309d8840209889990709dc373c487473284d05 100644
|
| --- a/content/port/browser/render_widget_host_view_port.h
|
| +++ b/content/port/browser/render_widget_host_view_port.h
|
| @@ -283,6 +283,13 @@ class CONTENT_EXPORT RenderWidgetHostViewPort : public RenderWidgetHostView,
|
| virtual InputEventAckState FilterInputEvent(
|
| const WebKit::WebInputEvent& input_event) = 0;
|
|
|
| + // Called by the host when it requires an input flush; the flush call should
|
| + // by synchronized with BeginFrame.
|
| + virtual void OnSetNeedsFlushInput() = 0;
|
| +
|
| + // Called by the host when the input flush has completed.
|
| + virtual void OnDidFlushInput() = 0;
|
| +
|
| virtual void GestureEventAck(int gesture_event_type,
|
| InputEventAckState ack_result) = 0;
|
|
|
|
|