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 5e3ee8fd5532a86b42fc824ecbd233c7677c247d..96cfe6c177f257ad6a76d99946e814d24d956d02 100644 |
--- a/content/browser/renderer_host/render_widget_host_impl.h |
+++ b/content/browser/renderer_host/render_widget_host_impl.h |
@@ -445,11 +445,11 @@ class CONTENT_EXPORT RenderWidgetHostImpl |
// suppress_next_char_events_. |
void SuppressNextCharEvents(); |
- // Called by RenderWidgetHostView in response to OnSetNeedsFlushInput. |
+ // Called by the view in response to a flush request. |
void FlushInput(); |
- // InputRouterClient |
- void SetNeedsFlush() override; |
+ // Request a flush signal from the view. |
+ void SetNeedsFlush(); |
// Indicates whether the renderer drives the RenderWidgetHosts's size or the |
// other way around. |
@@ -617,7 +617,6 @@ class CONTENT_EXPORT RenderWidgetHostImpl |
void OnSetTooltipText(const base::string16& tooltip_text, |
blink::WebTextDirection text_direction_hint); |
bool OnSwapCompositorFrame(const IPC::Message& message); |
- void OnFlingingStopped(); |
void OnUpdateRect(const ViewHostMsg_UpdateRect_Params& params); |
void OnQueueSyntheticGesture(const SyntheticGesturePacket& gesture_packet); |
virtual void OnFocus(); |
@@ -671,6 +670,7 @@ class CONTENT_EXPORT RenderWidgetHostImpl |
void OnHasTouchEventHandlers(bool has_handlers) override; |
void DidFlush() override; |
void DidOverscroll(const DidOverscrollParams& params) override; |
+ void DidStopFlinging() override; |
// InputAckHandler |
void OnKeyboardEventAck(const NativeWebKeyboardEvent& event, |