| 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 bd6bc767fc252f6b9acf9d617dd9154aa94a1471..4818b8b47f945336bfc717adf777819d0e2c8c92 100644
|
| --- a/content/browser/renderer_host/render_widget_host_impl.h
|
| +++ b/content/browser/renderer_host/render_widget_host_impl.h
|
| @@ -421,10 +421,7 @@ class CONTENT_EXPORT RenderWidgetHostImpl : public RenderWidgetHost,
|
| void SuppressNextCharEvents();
|
|
|
| // Called by the view in response to a flush request.
|
| - void FlushInput();
|
| -
|
| - // Request a flush signal from the view.
|
| - void SetNeedsFlush();
|
| + void FlushInput(base::TimeTicks frame_time);
|
|
|
| // Indicates whether the renderer drives the RenderWidgetHosts's size or the
|
| // other way around.
|
| @@ -638,7 +635,8 @@ class CONTENT_EXPORT RenderWidgetHostImpl : public RenderWidgetHost,
|
| void IncrementInFlightEventCount() override;
|
| void DecrementInFlightEventCount() override;
|
| void OnHasTouchEventHandlers(bool has_handlers) override;
|
| - void DidFlush() override;
|
| + void SetNeedsFlushInput() override;
|
| + void DidFlushAllInput() override;
|
| void DidOverscroll(const DidOverscrollParams& params) override;
|
| void DidStopFlinging() override;
|
|
|
|
|