| Index: chrome/browser/ui/infobar_container_delegate.cc
|
| diff --git a/chrome/browser/ui/infobar_container_delegate.cc b/chrome/browser/ui/infobar_container_delegate.cc
|
| index 24d85f623cdd23a5176b494f927795085fda93f6..25ec1a100e74bd8f62ccb6bf0b7d57d22bc1d1ed 100644
|
| --- a/chrome/browser/ui/infobar_container_delegate.cc
|
| +++ b/chrome/browser/ui/infobar_container_delegate.cc
|
| @@ -10,14 +10,14 @@
|
| #endif
|
|
|
| // static
|
| -#if defined(TOOLKIT_VIEWS)
|
| -// Views comes first since Mac may eventually be Views-based.
|
| +#if defined(OS_MACOSX)
|
| +const int InfoBarContainerDelegate::kSeparatorLineHeight = 1;
|
| +const int InfoBarContainerDelegate::kDefaultArrowTargetHeight = 11;
|
| +#elif defined(TOOLKIT_VIEWS)
|
| +// Views comes second until the Mac browser is Views-based.
|
| const int InfoBarContainerDelegate::kSeparatorLineHeight =
|
| views::NonClientFrameView::kClientEdgeThickness;
|
| const int InfoBarContainerDelegate::kDefaultArrowTargetHeight = 9;
|
| -#elif defined(OS_MACOSX)
|
| -const int InfoBarContainerDelegate::kSeparatorLineHeight = 1;
|
| -const int InfoBarContainerDelegate::kDefaultArrowTargetHeight = 11;
|
| #endif
|
|
|
| const int InfoBarContainerDelegate::kDefaultBarTargetHeight = 36;
|
|
|