Home
last modified time | relevance | path

Searched refs:lf_height (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/ui/gfx/
Dplatform_font_win.cc40 int AdjustFontSize(int lf_height, int size_delta) { in AdjustFontSize() argument
41 if (lf_height < 0) { in AdjustFontSize()
42 lf_height -= size_delta; in AdjustFontSize()
44 lf_height += size_delta; in AdjustFontSize()
49 if (abs(lf_height) < min_font_size) { in AdjustFontSize()
50 return lf_height < 0 ? -min_font_size : min_font_size; in AdjustFontSize()
52 return lf_height; in AdjustFontSize()