| Index: content/browser/frame_host/render_widget_host_view_child_frame.cc
|
| diff --git a/content/browser/frame_host/render_widget_host_view_child_frame.cc b/content/browser/frame_host/render_widget_host_view_child_frame.cc
|
| index 88ea407cb7071d6c6b3539d591e0caf8d6f47146..729e1324e3120c129f6f16415f671e68737ade3d 100644
|
| --- a/content/browser/frame_host/render_widget_host_view_child_frame.cc
|
| +++ b/content/browser/frame_host/render_widget_host_view_child_frame.cc
|
| @@ -303,6 +303,12 @@ void RenderWidgetHostViewChildFrame::SelectionChanged(
|
|
|
| void RenderWidgetHostViewChildFrame::SelectionBoundsChanged(
|
| const ViewHostMsg_SelectionBounds_Params& params) {
|
| + ViewHostMsg_SelectionBounds_Params transformed_params = params;
|
| + transformed_params.anchor_rect.set_origin(
|
| + TransformPointToRootCoordSpace(params.anchor_rect.origin()));
|
| + transformed_params.focus_rect.set_origin(
|
| + TransformPointToRootCoordSpace(params.focus_rect.origin()));
|
| + RenderWidgetHostViewBase::SelectionBoundsChanged(transformed_params);
|
| }
|
|
|
| void RenderWidgetHostViewChildFrame::LockCompositingSurface() {
|
|
|