| Index: chrome/browser/instant/instant_controller.cc
|
| diff --git a/chrome/browser/instant/instant_controller.cc b/chrome/browser/instant/instant_controller.cc
|
| index e4a3a4e1da4993b15434f79858678cea31809b61..a05c8edef765a65b2820342652d1dac10825ed85 100644
|
| --- a/chrome/browser/instant/instant_controller.cc
|
| +++ b/chrome/browser/instant/instant_controller.cc
|
| @@ -751,7 +751,8 @@ void InstantController::SendBoundsToPage() {
|
|
|
| last_omnibox_bounds_ = omnibox_bounds_;
|
| gfx::Rect preview_bounds = delegate_->GetInstantBounds();
|
| - gfx::Rect intersection = omnibox_bounds_.Intersect(preview_bounds);
|
| + gfx::Rect intersection = omnibox_bounds_;
|
| + intersection.Intersect(preview_bounds);
|
|
|
| // Translate into window coordinates.
|
| if (!intersection.IsEmpty()) {
|
|
|