From b95901091d63ce09accec3088945955f969d46e1 Mon Sep 17 00:00:00 2001 From: dsinclair Date: Wed, 27 Apr 2016 06:38:59 -0700 Subject: Remove IFX_SystemHandler. This CL folds IFX_SystemHandler into CFX_SystemHandler. Methods which either had no implementation, or returned a default value have been removed. Review URL: https://codereview.chromium.org/1923093002 --- fpdfsdk/pdfwindow/PWL_FontMap.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'fpdfsdk/pdfwindow/PWL_FontMap.h') diff --git a/fpdfsdk/pdfwindow/PWL_FontMap.h b/fpdfsdk/pdfwindow/PWL_FontMap.h index 7533b1e787..2c40c92a97 100644 --- a/fpdfsdk/pdfwindow/PWL_FontMap.h +++ b/fpdfsdk/pdfwindow/PWL_FontMap.h @@ -12,7 +12,7 @@ #include "public/fpdf_sysfontinfo.h" class CPDF_Document; -class IFX_SystemHandler; +class CFX_SystemHandler; struct CPWL_FontMap_Data { CPDF_Font* pFont; @@ -51,7 +51,7 @@ struct CPWL_FontMap_Native { class CPWL_FontMap : public IPVT_FontMap { public: - CPWL_FontMap(IFX_SystemHandler* pSystemHandler); + CPWL_FontMap(CFX_SystemHandler* pSystemHandler); ~CPWL_FontMap() override; // IPVT_FontMap @@ -63,7 +63,7 @@ class CPWL_FontMap : public IPVT_FontMap { int32_t CharCodeFromUnicode(int32_t nFontIndex, uint16_t word) override; int32_t CharSetFromUnicode(uint16_t word, int32_t nOldCharset) override; - void SetSystemHandler(IFX_SystemHandler* pSystemHandler); + void SetSystemHandler(CFX_SystemHandler* pSystemHandler); int32_t GetFontMapCount() const; const CPWL_FontMap_Data* GetFontMapData(int32_t nIndex) const; static int32_t GetNativeCharset(); @@ -119,12 +119,12 @@ class CPWL_FontMap : public IPVT_FontMap { private: CPDF_Document* m_pPDFDoc; - IFX_SystemHandler* m_pSystemHandler; + CFX_SystemHandler* m_pSystemHandler; }; class CPWL_DocFontMap : public CPWL_FontMap { public: - CPWL_DocFontMap(IFX_SystemHandler* pSystemHandler, + CPWL_DocFontMap(CFX_SystemHandler* pSystemHandler, CPDF_Document* pAttachedDoc); ~CPWL_DocFontMap() override; -- cgit v1.2.3