HomeSort by relevance Sort by last modified time
    Searched refs:HFontRef (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/ui/gfx/
platform_font_win.h 76 // an HFontRef. That is, every Font has an HFontRef, which has an HFONT.
78 // HFontRef is reference counted. Upon deletion, it deletes the HFONT.
79 // By making HFontRef maintain the reference to the HFONT, multiple
81 class HFontRef : public base::RefCounted<HFontRef> {
84 // the HFontRef is deleted.
85 HFontRef(HFONT hfont,
108 friend class base::RefCounted<HFontRef>;
110 ~HFontRef();
    [all...]
platform_font_win.cc 68 PlatformFontWin::HFontRef* PlatformFontWin::base_font_ref_;
171 // With the current implementation on Windows, HFontRef::font_name() returns
219 PlatformFontWin::HFontRef* PlatformFontWin::GetBaseFontRef() {
237 PlatformFontWin::HFontRef* PlatformFontWin::CreateHFontRef(HFONT font) {
262 return new HFontRef(font, font_size, height, baseline, cap_height,
266 PlatformFontWin::PlatformFontWin(HFontRef* hfont_ref) : font_ref_(hfont_ref) {
270 // PlatformFontWin::HFontRef:
272 PlatformFontWin::HFontRef::HFontRef(HFONT hfont,
297 int PlatformFontWin::HFontRef::GetDluBaseX()
    [all...]

Completed in 958 milliseconds