| Index: chrome/browser/ui/cocoa/infobars/infobar_controller.mm
|
| diff --git a/chrome/browser/ui/cocoa/infobars/infobar_controller.mm b/chrome/browser/ui/cocoa/infobars/infobar_controller.mm
|
| index 466ad70f7c341e59937c9cd19400c0670aa2e8f4..2d14656cb35356c96af0f55a31891770862cdbb3 100644
|
| --- a/chrome/browser/ui/cocoa/infobars/infobar_controller.mm
|
| +++ b/chrome/browser/ui/cocoa/infobars/infobar_controller.mm
|
| @@ -73,16 +73,14 @@ - (void)awakeFromNib {
|
|
|
| [self addAdditionalControls];
|
|
|
| - // With Material Design infobars are drawn a little taller, so have to move
|
| - // its controls to keep them centered.
|
| - if (ui::MaterialDesignController::IsModeMaterial()) {
|
| - CGFloat heightDelta = InfoBarContainerDelegate::kDefaultBarTargetHeightMd -
|
| - InfoBarContainerDelegate::kDefaultBarTargetHeight;
|
| - for (NSView* nextSubview in [infoBarView_ subviews]) {
|
| - NSRect frame = [nextSubview frame];
|
| - frame.origin.y += heightDelta / 2;
|
| - [nextSubview setFrame:frame];
|
| - }
|
| + // Infobars are drawn a little taller, so have to move its controls to keep
|
| + // them centered.
|
| + CGFloat heightDelta = InfoBarContainerDelegate::kDefaultBarTargetHeightMd -
|
| + InfoBarContainerDelegate::kDefaultBarTargetHeight;
|
| + for (NSView* nextSubview in [infoBarView_ subviews]) {
|
| + NSRect frame = [nextSubview frame];
|
| + frame.origin.y += heightDelta / 2;
|
| + [nextSubview setFrame:frame];
|
| }
|
|
|
| [infoBarView_ setInfobarType:[self delegate]->GetInfoBarType()];
|
|
|