| Index: chrome/browser/themes/theme_properties.cc
|
| diff --git a/chrome/browser/themes/theme_properties.cc b/chrome/browser/themes/theme_properties.cc
|
| index b3c5fdf456461fd8249a27604b6d76dfed9cf28f..234604b88deda271b6aed9c23f0a26bb90dccb92 100644
|
| --- a/chrome/browser/themes/theme_properties.cc
|
| +++ b/chrome/browser/themes/theme_properties.cc
|
| @@ -136,6 +136,9 @@ const int kOmniboxDropdownMinIconVerticalPadding[] = {2, 4, 8};
|
| // bottom of the row's text and the top or bottom of the row edge.
|
| const int kOmniboxDropdownMinTextVerticalPadding[] = {3, 4, 8};
|
|
|
| +// The font size to use in the location bar and omnibox dropdown.
|
| +const int kOmniboxFontPixelSize[] = {16, 14, 14};
|
| +
|
| // The spacing between a ToolbarButton's image and its border.
|
| const int kToolbarButtonBorderInset[] = {2, 6, 6};
|
|
|
| @@ -390,6 +393,8 @@ int ThemeProperties::GetDefaultDisplayProperty(int id) {
|
| return kOmniboxDropdownMinIconVerticalPadding[mode];
|
| case ThemeProperties::PROPERTY_OMNIBOX_DROPDOWN_MIN_TEXT_VERTICAL_PADDING:
|
| return kOmniboxDropdownMinTextVerticalPadding[mode];
|
| + case ThemeProperties::PROPERTY_OMNIBOX_FONT_PIXEL_SIZE:
|
| + return kOmniboxFontPixelSize[mode];
|
| case ThemeProperties::PROPERTY_TOOLBAR_BUTTON_BORDER_INSET:
|
| return kToolbarButtonBorderInset[mode];
|
| case ThemeProperties::PROPERTY_TOOLBAR_VIEW_CONTENT_SHADOW_HEIGHT:
|
|
|