diff options
author | dsinclair <dsinclair@chromium.org> | 2016-04-05 12:01:42 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-04-05 12:01:42 -0700 |
commit | c7a7349cf316af37d4ad4b71c5742159deccbf33 (patch) | |
tree | 5006913b93a6d498e3df158bc644400e3a1a0c7c /pdfium.gyp | |
parent | 179bebb9a14dfd3ba91e9e068d4d436657a7c780 (diff) | |
download | pdfium-c7a7349cf316af37d4ad4b71c5742159deccbf33.tar.xz |
Remove core/include/fpdfdoc/fpdf_vt.h
This CL removes the core/include/fpdfdoc/fpdf_vt.h file. The IPDF_VariableText
class was removed in favour of the only concrete class of CPD_VariableText.
CPVT_Provider was moved to CPDF_VariableText::Provider and
CPDF_VariableText_Iterator was moved to CPDF_VariableText::Iterator.
The IFX_Edit_FontMap interface was merged into the IPVT_FontMap interface so
there is only one.
Other classes were split out as needed in order to keep things compiling.
BUG=pdfium:468
Review URL: https://codereview.chromium.org/1860063002
Diffstat (limited to 'pdfium.gyp')
-rw-r--r-- | pdfium.gyp | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/pdfium.gyp b/pdfium.gyp index 281cec356a..69aab07cc4 100644 --- a/pdfium.gyp +++ b/pdfium.gyp @@ -221,18 +221,22 @@ 'sources': [ 'core/include/fpdfdoc/fpdf_doc.h', 'core/include/fpdfdoc/fpdf_tagged.h', - 'core/include/fpdfdoc/fpdf_vt.h', + 'core/fpdfdoc/cpdf_variabletext.cpp', 'core/fpdfdoc/cpvt_color.cpp', 'core/fpdfdoc/cpvt_color.h', 'core/fpdfdoc/cpvt_dash.h', + 'core/fpdfdoc/cpvt_floatrect.h', 'core/fpdfdoc/cpvt_fontmap.cpp', 'core/fpdfdoc/cpvt_fontmap.h', 'core/fpdfdoc/cpvt_generateap.cpp', 'core/fpdfdoc/cpvt_generateap.h', - 'core/fpdfdoc/cpvt_provider.h', + 'core/fpdfdoc/cpvt_lineinfo.h', + 'core/fpdfdoc/cpvt_sectioninfo.h', + 'core/fpdfdoc/cpvt_wordinfo.h', + 'core/fpdfdoc/csection.h', + 'core/fpdfdoc/ctypeset.h', 'core/fpdfdoc/doc_action.cpp', 'core/fpdfdoc/doc_annot.cpp', - 'core/fpdfdoc/doc_ap.cpp', 'core/fpdfdoc/doc_basic.cpp', 'core/fpdfdoc/doc_bookmark.cpp', 'core/fpdfdoc/doc_form.cpp', @@ -246,7 +250,14 @@ 'core/fpdfdoc/doc_utils.h', 'core/fpdfdoc/doc_viewerPreferences.cpp', 'core/fpdfdoc/doc_vt.cpp', - 'core/fpdfdoc/doc_vtmodule.cpp', + 'core/fpdfdoc/include/cpdf_variabletext.h', + 'core/fpdfdoc/include/cpvt_line.h', + 'core/fpdfdoc/include/cpvt_secprops.h', + 'core/fpdfdoc/include/cpvt_section.h', + 'core/fpdfdoc/include/cpvt_word.h', + 'core/fpdfdoc/include/cpvt_wordplace.h', + 'core/fpdfdoc/include/cpvt_wordprops.h', + 'core/fpdfdoc/include/cpvt_wordrange.h', 'core/fpdfdoc/ipvt_fontmap.h', 'core/fpdfdoc/pdf_vt.h', 'core/fpdfdoc/tagged_int.h', |