Index: chrome/browser/ui/views/infobars/extension_infobar.cc |
=================================================================== |
--- chrome/browser/ui/views/infobars/extension_infobar.cc (revision 90352) |
+++ chrome/browser/ui/views/infobars/extension_infobar.cc (working copy) |
@@ -66,8 +66,10 @@ |
menu_size.height()); |
GetDelegate()->extension_host()->view()->SetBounds( |
- menu_->bounds().right() + kMenuHorizontalMargin, 0, |
- std::max(0, EndX() - StartX() - ContentMinimumWidth()), height()); |
+ menu_->bounds().right() + kMenuHorizontalMargin, |
+ arrow_height(), |
+ std::max(0, EndX() - StartX() - ContentMinimumWidth()), |
+ height() - arrow_height() - 1); |
} |
void ExtensionInfoBar::ViewHierarchyChanged(bool is_add, |