diff options
author | Lei Zhang <thestig@chromium.org> | 2015-09-04 14:11:03 -0700 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-09-04 14:11:03 -0700 |
commit | 0bfe588f394e2a00a866d31a30a9d795022f4a6c (patch) | |
tree | 695f7889e21c26ee6e6bdf01e430443fb619d4c8 /core/include | |
parent | 6087a2f18e0c779c1bae62812801cee98fe8a09d (diff) | |
download | pdfium-0bfe588f394e2a00a866d31a30a9d795022f4a6c.tar.xz |
Fix typos, nits and remove dead code in fpdf_text_int.cpp.
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1316643004 .
Diffstat (limited to 'core/include')
-rw-r--r-- | core/include/fpdftext/fpdf_text.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/core/include/fpdftext/fpdf_text.h b/core/include/fpdftext/fpdf_text.h index f27f1db7e6..a14552ef24 100644 --- a/core/include/fpdftext/fpdf_text.h +++ b/core/include/fpdftext/fpdf_text.h @@ -72,23 +72,20 @@ class CPDFText_ParseOptions { FX_BOOL m_bNormalizeObjs; FX_BOOL m_bOutputHyphen; }; + class IPDF_TextPage { public: - virtual ~IPDF_TextPage() {} - static IPDF_TextPage* CreateTextPage(const CPDF_Page* pPage, - CPDFText_ParseOptions ParserOptions); static IPDF_TextPage* CreateTextPage(const CPDF_Page* pPage, int flags = 0); - static IPDF_TextPage* CreateTextPage(const CPDF_PageObjects* pObjs, - int flags = 0); static IPDF_TextPage* CreateReflowTextPage(IPDF_ReflowedPage* pRefPage); + virtual ~IPDF_TextPage() {} + virtual void NormalizeObjects(FX_BOOL bNormalize) = 0; virtual FX_BOOL ParseTextPage() = 0; - virtual FX_BOOL IsParsered() const = 0; + virtual bool IsParsed() const = 0; - public: virtual int CharIndexFromTextIndex(int TextIndex) const = 0; virtual int TextIndexFromCharIndex(int CharIndex) const = 0; @@ -139,6 +136,7 @@ class IPDF_TextPage { virtual CFX_WideString GetPageText(int start = 0, int nCount = -1) const = 0; }; + #define FPDFTEXT_MATCHCASE 0x00000001 #define FPDFTEXT_MATCHWHOLEWORD 0x00000002 #define FPDFTEXT_CONSECUTIVE 0x00000004 |