| 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 431eb5cd9887bff108e8aea5e1c99157c843717d..4f0562ed8642eb81ca94c18a684db68b38af442f 100644
|
| --- a/content/browser/renderer_host/render_widget_host_impl.h
|
| +++ b/content/browser/renderer_host/render_widget_host_impl.h
|
| @@ -517,6 +517,9 @@ class CONTENT_EXPORT RenderWidgetHostImpl : virtual public RenderWidgetHost,
|
| // suppress_next_char_events_.
|
| void SuppressNextCharEvents();
|
|
|
| + // Called by RenderWidgetHostView in response to OnSetNeedsFlushInput.
|
| + void FlushInput();
|
| +
|
| // Indicates whether the renderer drives the RenderWidgetHosts's size or the
|
| // other way around.
|
| bool should_auto_resize() { return should_auto_resize_; }
|
| @@ -756,6 +759,9 @@ class CONTENT_EXPORT RenderWidgetHostImpl : virtual public RenderWidgetHost,
|
| // which may get in recursive loops).
|
| void DelayedAutoResized();
|
|
|
| + // Creates the proper InputRouter, either Buffered or Immediate.
|
| + scoped_ptr<InputRouter> CreateInputRouter();
|
| +
|
| // Our delegate, which wants to know mainly about keyboard events.
|
| // It will remain non-NULL until DetachDelegate() is called.
|
| RenderWidgetHostDelegate* delegate_;
|
|
|