| Index: chrome/browser/extensions/extension_infobar_delegate.cc
|
| diff --git a/chrome/browser/extensions/extension_infobar_delegate.cc b/chrome/browser/extensions/extension_infobar_delegate.cc
|
| index ba169600b5184f53265edb06f9aec89053285566..81928277f6aabb55b107bc5bfd753c4af61cbab7 100644
|
| --- a/chrome/browser/extensions/extension_infobar_delegate.cc
|
| +++ b/chrome/browser/extensions/extension_infobar_delegate.cc
|
| @@ -55,9 +55,9 @@ ExtensionInfoBarDelegate::ExtensionInfoBarDelegate(
|
| content::Source<Profile>(browser->profile()));
|
|
|
| height_ = std::max(0, height);
|
| - height_ = std::min(2 * infobars::InfoBar::kDefaultBarTargetHeight, height_);
|
| + height_ = std::min(2 * infobars::InfoBar::gDefaultBarTargetHeight, height_);
|
| if (height_ == 0)
|
| - height_ = infobars::InfoBar::kDefaultBarTargetHeight;
|
| + height_ = infobars::InfoBar::gDefaultBarTargetHeight;
|
| }
|
|
|
| content::WebContents* ExtensionInfoBarDelegate::GetWebContents() {
|
|
|