| Index: chrome/browser/instant/instant_controller.cc
|
| diff --git a/chrome/browser/instant/instant_controller.cc b/chrome/browser/instant/instant_controller.cc
|
| index 24f7e8afc20cefd2d043d01843ad59668d7d97af..9300ba8ffaa79a8af4833d1d4fc05b6002ce87a4 100644
|
| --- a/chrome/browser/instant/instant_controller.cc
|
| +++ b/chrome/browser/instant/instant_controller.cc
|
| @@ -720,7 +720,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()) {
|
|
|