diff options
author | Lei Zhang <thestig@chromium.org> | 2015-08-14 14:07:43 -0700 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-08-14 14:07:43 -0700 |
commit | c2c3f7b5f0396409451a9d344f35ec1929a76e9f (patch) | |
tree | b1c696afdca13e8087e18014b19a6c82415f72d5 /core/include/fxge/fpf.h | |
parent | c6540e037ed1a9546d5a90455bf440a24b181ab4 (diff) | |
download | pdfium-c2c3f7b5f0396409451a9d344f35ec1929a76e9f.tar.xz |
Use override in more classes in core/
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1292613003 .
Diffstat (limited to 'core/include/fxge/fpf.h')
-rw-r--r-- | core/include/fxge/fpf.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/core/include/fxge/fpf.h b/core/include/fxge/fpf.h index efa001e916..e65fae0bbd 100644 --- a/core/include/fxge/fpf.h +++ b/core/include/fxge/fpf.h @@ -9,18 +9,21 @@ #include "../fxcrt/fx_coordinates.h" -class IFPF_DeviceModule; class IFPF_FontMgr; -class IFPF_Font; + class IFPF_DeviceModule { public: virtual ~IFPF_DeviceModule() {} virtual void Destroy() = 0; virtual IFPF_FontMgr* GetFontMgr() = 0; }; + IFPF_DeviceModule* FPF_GetDeviceModule(); + #define FPF_MATCHFONT_REPLACEANSI 1 + typedef struct FPF_HFONT_ { void* pData; } * FPF_HFONT; + class IFPF_Font { public: virtual void Release() = 0; @@ -47,8 +50,9 @@ class IFPF_Font { FX_DWORD dwSize) = 0; protected: - ~IFPF_Font() {} + virtual ~IFPF_Font() {} }; + class IFPF_FontMgr { public: virtual ~IFPF_FontMgr() {} |