| Index: chrome/browser/themes/theme_properties.cc
|
| diff --git a/chrome/browser/themes/theme_properties.cc b/chrome/browser/themes/theme_properties.cc
|
| index c2c45afc7c55b9071a5129dc72e3efb36aa939ae..e0e139d3064d667a4dca49298e9835e9e9b1c4f2 100644
|
| --- a/chrome/browser/themes/theme_properties.cc
|
| +++ b/chrome/browser/themes/theme_properties.cc
|
| @@ -172,8 +172,9 @@ const int kToolbarViewRightEdgeSpacing[] = {2, 4, 8};
|
| // The horizontal space between most items.
|
| const int kToolbarViewStandardSpacing[] = {3, 4, 8};
|
|
|
| -// The minimal vertical padding of the toolbar.
|
| -const int kToolbarViewVerticalPadding[] = {5, 4, 4};
|
| +// The minimum top and bottom vertical padding of the toolbar.
|
| +const int kToolbarViewTopVerticalPadding[] = {5, 4, 4};
|
| +const int kToolbarViewBottomVerticalPadding[] = {5, 5, 5};
|
|
|
| // ----------------------------------------------------------------------------
|
|
|
| @@ -436,8 +437,10 @@ int ThemeProperties::GetDefaultDisplayProperty(int id) {
|
| return kToolbarViewRightEdgeSpacing[mode];
|
| case ThemeProperties::PROPERTY_TOOLBAR_VIEW_STANDARD_SPACING:
|
| return kToolbarViewStandardSpacing[mode];
|
| - case ThemeProperties::PROPERTY_TOOLBAR_VIEW_VERTICAL_PADDING:
|
| - return kToolbarViewVerticalPadding[mode];
|
| + case ThemeProperties::PROPERTY_TOOLBAR_VIEW_TOP_VERTICAL_PADDING:
|
| + return kToolbarViewTopVerticalPadding[mode];
|
| + case ThemeProperties::PROPERTY_TOOLBAR_VIEW_BOTTOM_VERTICAL_PADDING:
|
| + return kToolbarViewBottomVerticalPadding[mode];
|
| default:
|
| return -1;
|
| }
|
|
|