| 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 756a7d834aa7155016516108d276c606b6723b6e..185d11a6c39d1c86bd108bdcdcaf056bd798619f 100644
|
| --- a/content/browser/renderer_host/render_widget_host_view_base.h
|
| +++ b/content/browser/renderer_host/render_widget_host_view_base.h
|
| @@ -272,6 +272,11 @@ class CONTENT_EXPORT RenderWidgetHostViewBase : public RenderWidgetHostView,
|
| virtual void SelectionBoundsChanged(
|
| const ViewHostMsg_SelectionBounds_Params& params);
|
|
|
| + // Updates the range of the marked text in an IME composition.
|
| + virtual void ImeCompositionRangeChanged(
|
| + const gfx::Range& range,
|
| + const std::vector<gfx::Rect>& character_bounds);
|
| +
|
| //----------------------------------------------------------------------------
|
| // The following static methods are implemented by each platform.
|
|
|
| @@ -382,11 +387,6 @@ class CONTENT_EXPORT RenderWidgetHostViewBase : public RenderWidgetHostView,
|
| virtual void LockCompositingSurface() = 0;
|
| virtual void UnlockCompositingSurface() = 0;
|
|
|
| - // Updates the range of the marked text in an IME composition.
|
| - virtual void ImeCompositionRangeChanged(
|
| - const gfx::Range& range,
|
| - const std::vector<gfx::Rect>& character_bounds) = 0;
|
| -
|
| // Add and remove observers for lifetime event notifications. The order in
|
| // which notifications are sent to observers is undefined. Clients must be
|
| // sure to remove the observer before they go away.
|
|
|