| Index: content/browser/renderer_host/render_widget_host_view_aura.h
|
| diff --git a/content/browser/renderer_host/render_widget_host_view_aura.h b/content/browser/renderer_host/render_widget_host_view_aura.h
|
| index e0f76f1d4a5f7476a553a10b91f40861e6561ba4..32ace314ca2ecc12752afaf0bec2de47778f4a7c 100644
|
| --- a/content/browser/renderer_host/render_widget_host_view_aura.h
|
| +++ b/content/browser/renderer_host/render_widget_host_view_aura.h
|
| @@ -38,6 +38,8 @@
|
| #include "ui/gfx/geometry/rect.h"
|
| #include "ui/wm/public/activation_delegate.h"
|
|
|
| +struct ViewHostMsg_TextInputState_Params;
|
| +
|
| namespace aura {
|
| class WindowTracker;
|
| namespace client {
|
| @@ -141,7 +143,6 @@ class CONTENT_EXPORT RenderWidgetHostViewAura
|
| RenderWidgetHostViewAura(RenderWidgetHost* host, bool is_guest_view_hack);
|
|
|
| // RenderWidgetHostView implementation.
|
| - bool OnMessageReceived(const IPC::Message& msg) override;
|
| void InitAsChild(gfx::NativeView parent_view) override;
|
| RenderWidgetHost* GetRenderWidgetHost() const override;
|
| void SetSize(const gfx::Size& size) override;
|
| @@ -169,10 +170,8 @@ class CONTENT_EXPORT RenderWidgetHostViewAura
|
| void Focus() override;
|
| void UpdateCursor(const WebCursor& cursor) override;
|
| void SetIsLoading(bool is_loading) override;
|
| - void TextInputTypeChanged(ui::TextInputType type,
|
| - ui::TextInputMode input_mode,
|
| - bool can_compose_inline,
|
| - int flags) override;
|
| + void TextInputStateChanged(
|
| + const ViewHostMsg_TextInputState_Params& params) override;
|
| void ImeCancelComposition() override;
|
| void ImeCompositionRangeChanged(
|
| const gfx::Range& range,
|
| @@ -310,8 +309,6 @@ class CONTENT_EXPORT RenderWidgetHostViewAura
|
| void OnHostMoved(const aura::WindowTreeHost* host,
|
| const gfx::Point& new_origin) override;
|
|
|
| - void OnTextInputStateChanged(const ViewHostMsg_TextInputState_Params& params);
|
| -
|
| #if defined(OS_WIN)
|
| // Sets the cutout rects from constrained windows. These are rectangles that
|
| // windowed NPAPI plugins shouldn't paint in. Overwrites any previous cutout
|
|
|