| 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 772dca1e4fa010c89bc1ecc6da8bbc16109b854d..8c2dca725fca3957b586a011e49d9d9bfa672f97 100644
|
| --- a/content/browser/renderer_host/render_widget_host_view_base.h
|
| +++ b/content/browser/renderer_host/render_widget_host_view_base.h
|
| @@ -141,6 +141,13 @@ class CONTENT_EXPORT RenderWidgetHostViewBase : public RenderWidgetHostView,
|
| //----------------------------------------------------------------------------
|
| // The following methods can be overridden by derived classes.
|
|
|
| + // Notifies the View that the renderer selection bounds has changed.
|
| + // |start_rect| and |end_rect| are the bounds end of the selection in the
|
| + // coordinate system of the render view. |start_direction| and |end_direction|
|
| + // indicates the direction at which the selection was made on touch devices.
|
| + virtual void SelectionBoundsChanged(
|
| + const ViewHostMsg_SelectionBounds_Params& params);
|
| +
|
| // Notifies the View that the renderer text selection has changed.
|
| virtual void SelectionChanged(const base::string16& text,
|
| size_t offset,
|
| @@ -297,13 +304,6 @@ class CONTENT_EXPORT RenderWidgetHostViewBase : public RenderWidgetHostView,
|
| // the page has changed.
|
| virtual void SetTooltipText(const base::string16& tooltip_text) = 0;
|
|
|
| - // Notifies the View that the renderer selection bounds has changed.
|
| - // |start_rect| and |end_rect| are the bounds end of the selection in the
|
| - // coordinate system of the render view. |start_direction| and |end_direction|
|
| - // indicates the direction at which the selection was made on touch devices.
|
| - virtual void SelectionBoundsChanged(
|
| - const ViewHostMsg_SelectionBounds_Params& params) = 0;
|
| -
|
| // Copies the contents of the compositing surface, providing a new SkBitmap
|
| // result via an asynchronously-run |callback|. |src_subrect| is specified in
|
| // layer space coordinates for the current platform (e.g., DIP for Aura/Mac,
|
|
|