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 20d8eb20958f799b538d41c79f0678bc5170cf1d..fcc38480042812d8d4523df6e3db74b3d170364e 100644 |
--- a/content/browser/renderer_host/render_widget_host_view_aura.h |
+++ b/content/browser/renderer_host/render_widget_host_view_aura.h |
@@ -35,6 +35,8 @@ |
#include "ui/wm/public/activation_change_observer.h" |
#include "ui/wm/public/activation_delegate.h" |
+struct ViewHostMsg_TextInputState_Params; |
+ |
namespace aura { |
class WindowTracker; |
namespace client { |
@@ -129,7 +131,6 @@ class CONTENT_EXPORT RenderWidgetHostViewAura |
explicit RenderWidgetHostViewAura(RenderWidgetHost* host); |
// RenderWidgetHostView implementation. |
- virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; |
virtual void InitAsChild(gfx::NativeView parent_view) OVERRIDE; |
virtual RenderWidgetHost* GetRenderWidgetHost() const OVERRIDE; |
virtual void SetSize(const gfx::Size& size) OVERRIDE; |
@@ -161,9 +162,8 @@ class CONTENT_EXPORT RenderWidgetHostViewAura |
virtual void Blur() OVERRIDE; |
virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; |
virtual void SetIsLoading(bool is_loading) OVERRIDE; |
- virtual void TextInputTypeChanged(ui::TextInputType type, |
- ui::TextInputMode input_mode, |
- bool can_compose_inline) OVERRIDE; |
+ virtual void TextInputStateChanged( |
+ const ViewHostMsg_TextInputState_Params& params) OVERRIDE; |
virtual void ImeCancelComposition() OVERRIDE; |
virtual void ImeCompositionRangeChanged( |
const gfx::Range& range, |
@@ -315,8 +315,6 @@ class CONTENT_EXPORT RenderWidgetHostViewAura |
virtual 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 |