diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-03-13 10:16:05 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-03-13 15:46:47 +0000 |
commit | 575898e6251c1dbb8de0d40a5b6ce90762aa2af2 (patch) | |
tree | c9b30307e04200c2621bfd98e4152c47653efcb6 /xfa/fde/cfde_txtedttextset.h | |
parent | 068d34426272bd7f02ffc12139ddd33ee2e237e6 (diff) | |
download | pdfium-575898e6251c1dbb8de0d40a5b6ce90762aa2af2.tar.xz |
Remove some single use interfaces
Remove interfaces which are only implemented once.
Change-Id: I73ceaa7bfd7ef2a630479c7eebed5e32ecb99940
Reviewed-on: https://pdfium-review.googlesource.com/2944
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'xfa/fde/cfde_txtedttextset.h')
-rw-r--r-- | xfa/fde/cfde_txtedttextset.h | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/xfa/fde/cfde_txtedttextset.h b/xfa/fde/cfde_txtedttextset.h index 8ab6578793..8046d38d79 100644 --- a/xfa/fde/cfde_txtedttextset.h +++ b/xfa/fde/cfde_txtedttextset.h @@ -13,7 +13,7 @@ class CFDE_TxtEdtPage; -class CFDE_TxtEdtTextSet : public IFDE_TextSet { +class CFDE_TxtEdtTextSet : public IFDE_VisualSet { public: explicit CFDE_TxtEdtTextSet(CFDE_TxtEdtPage* pPage); ~CFDE_TxtEdtTextSet() override; @@ -22,17 +22,16 @@ class CFDE_TxtEdtTextSet : public IFDE_TextSet { FDE_VISUALOBJTYPE GetType() override; CFX_RectF GetRect(const FDE_TEXTEDITPIECE& hVisualObj) override; - // IFDE_TextSet - int32_t GetString(FDE_TEXTEDITPIECE* pPiece, CFX_WideString& wsText) override; - CFX_RetainPtr<CFGAS_GEFont> GetFont() override; - FX_FLOAT GetFontSize() override; - FX_ARGB GetFontColor() override; + int32_t GetString(FDE_TEXTEDITPIECE* pPiece, CFX_WideString& wsText); + CFX_RetainPtr<CFGAS_GEFont> GetFont(); + FX_FLOAT GetFontSize(); + FX_ARGB GetFontColor(); int32_t GetDisplayPos(const FDE_TEXTEDITPIECE& pPiece, FXTEXT_CHARPOS* pCharPos, bool bCharCode = false, - CFX_WideString* pWSForms = nullptr) override; + CFX_WideString* pWSForms = nullptr); std::vector<CFX_RectF> GetCharRects(const FDE_TEXTEDITPIECE* pPiece, - bool bBBox) override; + bool bBBox); private: CFDE_TxtEdtPage* const m_pPage; |