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 b3a7d2462e2dc7f802deab26beb13f362e918d53..d01dccbde2db99690e275a5895f1bcaa5f0aa142 100644 |
--- a/content/browser/renderer_host/render_widget_host_view_aura.h |
+++ b/content/browser/renderer_host/render_widget_host_view_aura.h |
@@ -137,8 +137,7 @@ class CONTENT_EXPORT RenderWidgetHostViewAura |
void Focus() override; |
void UpdateCursor(const WebCursor& cursor) override; |
void SetIsLoading(bool is_loading) override; |
- void TextInputStateChanged( |
- const ViewHostMsg_TextInputState_Params& params) override; |
+ void NotifyTextInputStateChanged() override; |
void ImeCancelComposition() override; |
void ImeCompositionRangeChanged( |
const gfx::Range& range, |
@@ -492,8 +491,6 @@ class CONTENT_EXPORT RenderWidgetHostViewAura |
// Called when RenderWidget wants to start BeginFrame scheduling or stop. |
void OnSetNeedsBeginFrames(bool needs_begin_frames); |
- RenderFrameHostImpl* GetFocusedFrame(); |
- |
// Returns true if the |event| passed in can be forwarded to the renderer. |
bool CanRendererHandleEvent(const ui::MouseEvent* event, |
bool mouse_locked, |
@@ -569,14 +566,6 @@ class CONTENT_EXPORT RenderWidgetHostViewAura |
// object. |
ui::MotionEventAura pointer_state_; |
- // The current text input type. |
- ui::TextInputType text_input_type_; |
- // The current text input mode corresponding to HTML5 inputmode attribute. |
- ui::TextInputMode text_input_mode_; |
- // The current text input flags. |
- int text_input_flags_; |
- bool can_compose_inline_; |
- |
// Bounds for the selection. |
ui::SelectionBound selection_anchor_; |
ui::SelectionBound selection_focus_; |