summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
Diffstat (limited to 'chrome')
-rw-r--r--chrome/browser/views/autocomplete/autocomplete_popup_contents_view.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/browser/views/autocomplete/autocomplete_popup_contents_view.cc b/chrome/browser/views/autocomplete/autocomplete_popup_contents_view.cc
index 5ed809e..9f0097e 100644
--- a/chrome/browser/views/autocomplete/autocomplete_popup_contents_view.cc
+++ b/chrome/browser/views/autocomplete/autocomplete_popup_contents_view.cc
@@ -98,7 +98,12 @@ const int kRowRightPadding = 3;
const int kIconTextSpacing = 9;
// The size delta between the font used for the edit and the result rows. Passed
// to gfx::Font::DeriveFont.
+#if !defined(OS_CHROMEOS)
const int kEditFontAdjust = -1;
+#else
+// Don't adjust font on chromeos as it becomes too small.
+const int kEditFontAdjust = 0;
+#endif
}