| 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 76a1b64eb08e6105552fbf19fad98ac7f3a3248a..b71919be1a8908098029acdfd844cd110275dc28 100644
|
| --- a/content/browser/renderer_host/render_widget_host_view_base.h
|
| +++ b/content/browser/renderer_host/render_widget_host_view_base.h
|
| @@ -41,7 +41,6 @@ class SkBitmap;
|
|
|
| struct AccessibilityHostMsg_EventParams;
|
| struct ViewHostMsg_SelectionBounds_Params;
|
| -struct ViewHostMsg_TextInputState_Params;
|
|
|
| namespace media {
|
| class VideoFrame;
|
| @@ -70,6 +69,7 @@ class SyntheticGestureTarget;
|
| class WebCursor;
|
| struct DidOverscrollParams;
|
| struct NativeWebKeyboardEvent;
|
| +struct TextInputState;
|
|
|
| // Basic implementation shared by concrete RenderWidgetHostView subclasses.
|
| class CONTENT_EXPORT RenderWidgetHostViewBase : public RenderWidgetHostView,
|
| @@ -266,8 +266,7 @@ class CONTENT_EXPORT RenderWidgetHostViewBase : public RenderWidgetHostView,
|
| virtual void SetIsLoading(bool is_loading) = 0;
|
|
|
| // Updates the state of the input method attached to the view.
|
| - virtual void TextInputStateChanged(
|
| - const ViewHostMsg_TextInputState_Params& params) = 0;
|
| + virtual void TextInputStateChanged(const TextInputState& params) = 0;
|
|
|
| // Cancel the ongoing composition of the input method attached to the view.
|
| virtual void ImeCancelComposition() = 0;
|
|
|