OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PlatformFontWin
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/ui/gfx/
platform_font_win.h
17
class GFX_EXPORT
PlatformFontWin
: public PlatformFont {
19
PlatformFontWin
();
20
explicit
PlatformFontWin
(NativeFont native_font);
21
PlatformFontWin
(const std::string& font_name, int font_size);
71
virtual ~
PlatformFontWin
() {}
147
// Creates a new
PlatformFontWin
with the specified HFontRef. Used when
149
explicit
PlatformFontWin
(HFontRef* hfont_ref);
157
DISALLOW_COPY_AND_ASSIGN(
PlatformFontWin
);
platform_font_win.cc
33
if (gfx::
PlatformFontWin
::get_minimum_font_size_callback)
34
min_font_size = gfx::
PlatformFontWin
::get_minimum_font_size_callback();
68
PlatformFontWin
::HFontRef*
PlatformFontWin
::base_font_ref_;
71
PlatformFontWin
::AdjustFontCallback
72
PlatformFontWin
::adjust_font_callback = NULL;
73
PlatformFontWin
::GetMinimumFontSizeCallback
74
PlatformFontWin
::get_minimum_font_size_callback = NULL;
77
//
PlatformFontWin
, public
79
PlatformFontWin
::PlatformFontWin() : font_ref_(GetBaseFontRef())
[
all
...]
Completed in 358 milliseconds