diff options
author | jaepark <jaepark@google.com> | 2016-08-22 17:54:56 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-08-22 17:54:56 -0700 |
commit | c38de1116bbee807e4461fe8a08e4c152c0fce15 (patch) | |
tree | 3a5f8f4a71ad59b1b424357ddab8ecbd1f00ba85 /core/fpdfdoc/cpdf_annot.cpp | |
parent | 7da24e66c6e78a7675697ecec641e3802ff722ca (diff) | |
download | pdfium-c38de1116bbee807e4461fe8a08e4c152c0fce15.tar.xz |
Generate default AP stream for text annotation.
This patch generates a default AP stream for text annotation. The AP stream
only draws a symbol, which represents the presence of text annotation at the
point.
Also, roll DEPS for testing/corpus to afbac94 to test text annotations.
BUG=62625
Review-Url: https://codereview.chromium.org/2270493002
Diffstat (limited to 'core/fpdfdoc/cpdf_annot.cpp')
-rw-r--r-- | core/fpdfdoc/cpdf_annot.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/fpdfdoc/cpdf_annot.cpp b/core/fpdfdoc/cpdf_annot.cpp index 617ea0fdc3..df12e9a82e 100644 --- a/core/fpdfdoc/cpdf_annot.cpp +++ b/core/fpdfdoc/cpdf_annot.cpp @@ -34,6 +34,8 @@ CPDF_Annot::CPDF_Annot(CPDF_Dictionary* pDict, CPDF_Document* pDocument) CPVT_GenerateAP::GenerateSquigglyAP(m_pDocument, m_pAnnotDict); else if (m_sSubtype == "StrikeOut") CPVT_GenerateAP::GenerateStrikeOutAP(m_pDocument, m_pAnnotDict); + else if (m_sSubtype == "Text") + CPVT_GenerateAP::GenerateTextAP(m_pDocument, m_pAnnotDict); else if (m_sSubtype == "Underline") CPVT_GenerateAP::GenerateUnderlineAP(m_pDocument, m_pAnnotDict); } |