| Index: chrome/browser/ui/layout_constants.cc
|
| diff --git a/chrome/browser/ui/layout_constants.cc b/chrome/browser/ui/layout_constants.cc
|
| index c226c6513f1f37b59ea9269ff48bb5142e9f7e60..6cfa6e8e3dbe734d26e02c7f11cd6ce8ae67381e 100644
|
| --- a/chrome/browser/ui/layout_constants.cc
|
| +++ b/chrome/browser/ui/layout_constants.cc
|
| @@ -13,6 +13,7 @@ int GetLayoutConstant(LayoutConstant constant) {
|
| const int kIconLabelViewInternalPadding[] = {3, 2, 2};
|
| const int kIconLabelViewTrailingPadding[] = {2, 8, 8};
|
| const int kLocationBarBorderThickness[] = {2, 1, 1};
|
| + const int kLocationBarBubbleFontVerticalPadding[] = {1, 2, 4};
|
| const int kLocationBarBubbleHorizontalPadding[] = {1, 4, 4};
|
| const int kLocationBarBubbleVerticalPadding[] = {1, 3, 3};
|
| const int kLocationBarHeight[] = {27, 28, 32};
|
| @@ -50,6 +51,8 @@ int GetLayoutConstant(LayoutConstant constant) {
|
| return kIconLabelViewTrailingPadding[mode];
|
| case LOCATION_BAR_BORDER_THICKNESS:
|
| return kLocationBarBorderThickness[mode];
|
| + case LOCATION_BAR_BUBBLE_FONT_VERTICAL_PADDING:
|
| + return kLocationBarBubbleFontVerticalPadding[mode];
|
| case LOCATION_BAR_BUBBLE_HORIZONTAL_PADDING:
|
| return kLocationBarBubbleHorizontalPadding[mode];
|
| case LOCATION_BAR_BUBBLE_VERTICAL_PADDING:
|
|
|