Index: content/browser/renderer_host/render_widget_host_view_base.h |
diff --git a/content/browser/renderer_host/render_widget_host_view_base.h b/content/browser/renderer_host/render_widget_host_view_base.h |
index 21266f153ba40ebe6d53449e7581ea8fb95e3b26..75baf81a43417a9ce616a9bee71b1cdc7b39b9a8 100644 |
--- a/content/browser/renderer_host/render_widget_host_view_base.h |
+++ b/content/browser/renderer_host/render_widget_host_view_base.h |
@@ -34,6 +34,7 @@ class SkBitmap; |
struct AccessibilityHostMsg_EventParams; |
struct ViewHostMsg_SelectionBounds_Params; |
+struct ViewHostMsg_TextInputState_Params; |
namespace media { |
class VideoFrame; |
@@ -207,11 +208,9 @@ class CONTENT_EXPORT RenderWidgetHostViewBase : public RenderWidgetHostView, |
// Indicates whether the page has finished loading. |
virtual void SetIsLoading(bool is_loading) = 0; |
- // Updates the type of the input method attached to the view. |
- virtual void TextInputTypeChanged(ui::TextInputType type, |
- ui::TextInputMode mode, |
- bool can_compose_inline, |
- int flags) = 0; |
+ // Updates the state of the input method attached to the view. |
+ virtual void TextInputStateChanged( |
+ const ViewHostMsg_TextInputState_Params& params) = 0; |
// Cancel the ongoing composition of the input method attached to the view. |
virtual void ImeCancelComposition() = 0; |