diff options
author | dsinclair <dsinclair@chromium.org> | 2016-03-31 20:03:08 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-03-31 20:03:08 -0700 |
commit | 777b333109db7fceb5f2ca1fc521ced7f863fa18 (patch) | |
tree | f5968b42f43c90bc20af39a845718877cf80e064 /core/include/fpdfdoc/fpdf_vt.h | |
parent | 47ca692c8150cb39abef5737e866b91e6a105b80 (diff) | |
download | pdfium-777b333109db7fceb5f2ca1fc521ced7f863fa18.tar.xz |
Split core/include/fpdfdoc/fpdf_ap.h
This CL splits the fpdf_ap.h file apart into individual pieces and moves the
implementations to their own CPP files.
Review URL: https://codereview.chromium.org/1840413002
Diffstat (limited to 'core/include/fpdfdoc/fpdf_vt.h')
-rw-r--r-- | core/include/fpdfdoc/fpdf_vt.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/core/include/fpdfdoc/fpdf_vt.h b/core/include/fpdfdoc/fpdf_vt.h index d79cad42d6..1e0d351fee 100644 --- a/core/include/fpdfdoc/fpdf_vt.h +++ b/core/include/fpdfdoc/fpdf_vt.h @@ -261,26 +261,7 @@ struct CPVT_Section { CPVT_WordProps WordProps; }; -class IPDF_VariableText_Provider { - public: - virtual ~IPDF_VariableText_Provider() {} - - virtual int32_t GetCharWidth(int32_t nFontIndex, - uint16_t word, - int32_t nWordStyle) = 0; - - virtual int32_t GetTypeAscent(int32_t nFontIndex) = 0; - - virtual int32_t GetTypeDescent(int32_t nFontIndex) = 0; - virtual int32_t GetWordFontIndex(uint16_t word, - int32_t charset, - int32_t nFontIndex) = 0; - - virtual FX_BOOL IsLatinWord(uint16_t word) = 0; - - virtual int32_t GetDefaultFontIndex() = 0; -}; class IPDF_VariableText_Iterator { public: virtual ~IPDF_VariableText_Iterator() {} |