summaryrefslogtreecommitdiff
path: root/core/include/fpdfdoc/fpdf_doc.h
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2015-12-10 15:03:16 -0800
committerTom Sepez <tsepez@chromium.org>2015-12-10 15:03:16 -0800
commit7db2a535f163e7ce5995da12161ebd0214f0f75a (patch)
tree0011af492c814606716cd62f0f6132ff83783c75 /core/include/fpdfdoc/fpdf_doc.h
parentf32c969bce6743fca1e7ff796b54a1692d26d7f0 (diff)
downloadpdfium-7db2a535f163e7ce5995da12161ebd0214f0f75a.tar.xz
Replace several more CFX_MapPtrToPtr with std::set or std::map
R=thestig@chromium.org Review URL: https://codereview.chromium.org/1520643002 .
Diffstat (limited to 'core/include/fpdfdoc/fpdf_doc.h')
-rw-r--r--core/include/fpdfdoc/fpdf_doc.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/core/include/fpdfdoc/fpdf_doc.h b/core/include/fpdfdoc/fpdf_doc.h
index 58f81cad92..2633017013 100644
--- a/core/include/fpdfdoc/fpdf_doc.h
+++ b/core/include/fpdfdoc/fpdf_doc.h
@@ -421,12 +421,9 @@ class CPDF_Annot : public CFX_PrivateData {
private:
CPDF_Dictionary* const m_pAnnotDict;
-
CPDF_AnnotList* const m_pList;
-
const CFX_ByteString m_sSubtype;
-
- CFX_MapPtrToPtr m_APMap;
+ std::map<CPDF_Stream*, CPDF_Form*> m_APMap;
};
class CPDF_AnnotList {