diff options
author | Tom Sepez <tsepez@chromium.org> | 2016-01-22 15:53:34 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2016-01-22 15:53:34 -0800 |
commit | c818b5fc6cca9a7e1a2851b30e8a34f652ab0ea9 (patch) | |
tree | d83dedf2ef93741074d02050fda3b60d739dea68 /core/include/fpdftext | |
parent | d5712ac571f3487fe3f74617fdab007a11a09052 (diff) | |
download | pdfium-c818b5fc6cca9a7e1a2851b30e8a34f652ab0ea9.tar.xz |
CPDFText_ParseOptions never change from default.
m_bGetCharCodeOnly and m_bOutputHyphen are never re-assigned.
m_bNormalizeObjs is assigned in a method that is never called.
R=ochang@chromium.org
Review URL: https://codereview.chromium.org/1618693009 .
Diffstat (limited to 'core/include/fpdftext')
-rw-r--r-- | core/include/fpdftext/fpdf_text.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/core/include/fpdftext/fpdf_text.h b/core/include/fpdftext/fpdf_text.h index 77b0c29a6b..20efb9171f 100644 --- a/core/include/fpdftext/fpdf_text.h +++ b/core/include/fpdftext/fpdf_text.h @@ -67,13 +67,6 @@ typedef CFX_ArrayTemplate<CFX_FloatRect> CFX_RectArray; #define FPDFTEXT_WRITINGMODE_LRTB 1 #define FPDFTEXT_WRITINGMODE_RLTB 2 #define FPDFTEXT_WRITINGMODE_TBRL 3 -class CPDFText_ParseOptions { - public: - CPDFText_ParseOptions(); - FX_BOOL m_bGetCharCodeOnly; - FX_BOOL m_bNormalizeObjs; - FX_BOOL m_bOutputHyphen; -}; class IPDF_TextPage { public: @@ -82,8 +75,6 @@ class IPDF_TextPage { virtual ~IPDF_TextPage() {} - virtual void NormalizeObjects(FX_BOOL bNormalize) = 0; - virtual FX_BOOL ParseTextPage() = 0; virtual bool IsParsed() const = 0; |