| Index: content/browser/renderer_host/input/touch_selection_controller_client_aura.cc
|
| diff --git a/content/browser/renderer_host/input/touch_selection_controller_client_aura.cc b/content/browser/renderer_host/input/touch_selection_controller_client_aura.cc
|
| index ada3e9f2fc7549240bf0d1d5061a92a562044e58..c47605c2535a685d5c62ffbc8bc24e4a66535351 100644
|
| --- a/content/browser/renderer_host/input/touch_selection_controller_client_aura.cc
|
| +++ b/content/browser/renderer_host/input/touch_selection_controller_client_aura.cc
|
| @@ -165,7 +165,7 @@ void TouchSelectionControllerClientAura::ShowQuickMenu() {
|
| // bounds.
|
| gfx::PointF origin = rect.origin();
|
| gfx::PointF bottom_right = rect.bottom_right();
|
| - gfx::Rect client_bounds = rwhva_->GetNativeView()->bounds();
|
| + auto client_bounds = gfx::RectF(rwhva_->GetNativeView()->bounds());
|
| origin.SetToMax(client_bounds.origin());
|
| bottom_right.SetToMin(client_bounds.bottom_right());
|
| if (origin.x() > bottom_right.x() || origin.y() > bottom_right.y())
|
|
|