Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(757)

Side by Side Diff: core/src/fxge/android/fpf_skiafont.h

Issue 1088733002: Kill CFX_Object. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase. Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « core/src/fxge/agg/include/fx_agg_driver.h ('k') | core/src/fxge/android/fpf_skiafontmgr.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #ifndef _FPF_SKIA_FONT_H_ 7 #ifndef _FPF_SKIA_FONT_H_
8 #define _FPF_SKIA_FONT_H_ 8 #define _FPF_SKIA_FONT_H_
9 #if _FX_OS_ == _FX_ANDROID_ 9 #if _FX_OS_ == _FX_ANDROID_
10 class CFPF_SkiaFontDescriptor; 10 class CFPF_SkiaFontDescriptor;
11 class CFPF_SkiaFontMgr; 11 class CFPF_SkiaFontMgr;
12 class SkTypeface; 12 class SkTypeface;
13 class CFPF_SkiaFont : public IFPF_Font, public CFX_Object 13 class CFPF_SkiaFont : public IFPF_Font
14 { 14 {
15 public: 15 public:
16 CFPF_SkiaFont(); 16 CFPF_SkiaFont();
17 virtual ~CFPF_SkiaFont(); 17 virtual ~CFPF_SkiaFont();
18 virtual void Release(); 18 virtual void Release();
19 virtual IFPF_Font* Retain(); 19 virtual IFPF_Font* Retain();
20 20
21 virtual FPF_HFONT GetHandle(); 21 virtual FPF_HFONT GetHandle();
22 22
23 virtual CFX_ByteString GetFamilyName(); 23 virtual CFX_ByteString GetFamilyName();
(...skipping 24 matching lines...) Expand all
48 protected: 48 protected:
49 CFPF_SkiaFontMgr *m_pFontMgr; 49 CFPF_SkiaFontMgr *m_pFontMgr;
50 CFPF_SkiaFontDescriptor *m_pFontDes; 50 CFPF_SkiaFontDescriptor *m_pFontDes;
51 FXFT_Face m_Face; 51 FXFT_Face m_Face;
52 FX_DWORD m_dwStyle; 52 FX_DWORD m_dwStyle;
53 FX_BYTE m_uCharset; 53 FX_BYTE m_uCharset;
54 FX_DWORD m_dwRefCount; 54 FX_DWORD m_dwRefCount;
55 }; 55 };
56 #endif 56 #endif
57 #endif 57 #endif
OLDNEW
« no previous file with comments | « core/src/fxge/agg/include/fx_agg_driver.h ('k') | core/src/fxge/android/fpf_skiafontmgr.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698