diff options
author | dsinclair <dsinclair@chromium.org> | 2016-04-04 15:24:20 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-04-04 15:24:20 -0700 |
commit | ed9c4386713084f37548b46ab36f618021f716f5 (patch) | |
tree | c5d3bca40a87d9beb9fea03c680f13cc8eb2400c /core/fpdfdoc/cpvt_provider.h | |
parent | c220e59f36a1a5664fc795c801968083adda1722 (diff) | |
download | pdfium-ed9c4386713084f37548b46ab36f618021f716f5.tar.xz |
Make IPDF_VariableText_{Provider,Iterator} inner classes.
This CL moves the IPDF_VariableText_Provider and IPDF_VariableText_Iterator
classes to be nested sub-classes of IPDF_VariableText.
BUG=pdfium:455
Review URL: https://codereview.chromium.org/1855403002
Diffstat (limited to 'core/fpdfdoc/cpvt_provider.h')
-rw-r--r-- | core/fpdfdoc/cpvt_provider.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/fpdfdoc/cpvt_provider.h b/core/fpdfdoc/cpvt_provider.h index e7edd538e5..fb6ff94861 100644 --- a/core/fpdfdoc/cpvt_provider.h +++ b/core/fpdfdoc/cpvt_provider.h @@ -7,16 +7,16 @@ #ifndef CORE_FPDFDOC_CPVT_PROVIDER_H_ #define CORE_FPDFDOC_CPVT_PROVIDER_H_ -#include "core/fpdfdoc/include/ipdf_variabletext_provider.h" #include "core/fpdfdoc/ipvt_fontmap.h" #include "core/fxcrt/include/fx_system.h" +#include "core/include/fpdfdoc/fpdf_vt.h" -class CPVT_Provider : public IPDF_VariableText_Provider { +class CPVT_Provider : public IPDF_VariableText::Provider { public: CPVT_Provider(IPVT_FontMap* pFontMap); ~CPVT_Provider() override; - // IPDF_VariableText_Provider + // IPDF_VariableText::Provider int32_t GetCharWidth(int32_t nFontIndex, uint16_t word, int32_t nWordStyle) override; |