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/fde_visualset.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/fde_visualset.h')
-rw-r--r-- | xfa/fde/fde_visualset.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/xfa/fde/fde_visualset.h b/xfa/fde/fde_visualset.h index 5cf02cde9c..e9ee9ab815 100644 --- a/xfa/fde/fde_visualset.h +++ b/xfa/fde/fde_visualset.h @@ -47,26 +47,4 @@ class IFDE_VisualSet { virtual CFX_RectF GetRect(const FDE_TEXTEDITPIECE& hVisualObj) = 0; }; -class IFDE_CanvasSet : public IFDE_VisualSet { - public: - virtual FX_POSITION GetFirstPosition() = 0; - virtual FDE_TEXTEDITPIECE* GetNext(FX_POSITION& pos, - IFDE_VisualSet*& pVisualSet) = 0; -}; - -class IFDE_TextSet : public IFDE_VisualSet { - public: - virtual int32_t GetString(FDE_TEXTEDITPIECE* hText, - CFX_WideString& wsText) = 0; - virtual CFX_RetainPtr<CFGAS_GEFont> GetFont() = 0; - virtual FX_FLOAT GetFontSize() = 0; - virtual FX_ARGB GetFontColor() = 0; - virtual int32_t GetDisplayPos(const FDE_TEXTEDITPIECE& hText, - FXTEXT_CHARPOS* pCharPos, - bool bCharCode = false, - CFX_WideString* pWSForms = nullptr) = 0; - virtual std::vector<CFX_RectF> GetCharRects(const FDE_TEXTEDITPIECE* hText, - bool bbox) = 0; -}; - #endif // XFA_FDE_FDE_VISUALSET_H_ |