| Index: content/renderer/disambiguation_popup_helper.cc
|
| diff --git a/content/renderer/disambiguation_popup_helper.cc b/content/renderer/disambiguation_popup_helper.cc
|
| index 1a55414c03f698fd3396539980d2e30a3c7a2b84..1399518701b56cfc6bf932d8a641304802cc14d8 100644
|
| --- a/content/renderer/disambiguation_popup_helper.cc
|
| +++ b/content/renderer/disambiguation_popup_helper.cc
|
| @@ -92,9 +92,9 @@ float DisambiguationPopupHelper::ComputeZoomAreaAndScaleFactor(
|
| gfx::Rect* zoom_rect) {
|
| *zoom_rect = tap_rect;
|
| for (size_t i = 0; i < target_rects.size(); i++)
|
| - *zoom_rect = zoom_rect->Union(gfx::Rect(target_rects[i]));
|
| + zoom_rect->Union(gfx::Rect(target_rects[i]));
|
| zoom_rect->Inset(-kDisambiguationPopupPadding, -kDisambiguationPopupPadding);
|
| - *zoom_rect = zoom_rect->Intersect(gfx::Rect(viewport_size));
|
| + zoom_rect->Intersect(gfx::Rect(viewport_size));
|
|
|
| float scale = FindOptimalScaleFactor(target_rects);
|
| *zoom_rect = CropZoomArea(
|
|
|