diff options
author | tsepez <tsepez@chromium.org> | 2017-01-05 12:18:41 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2017-01-05 12:18:41 -0800 |
commit | 6bb3b894488fd6f38c096b708980a9f08286ac5c (patch) | |
tree | 2360efbf1aa5f2c452ca350382483d1c6b693f23 /xfa/fxfa/parser/cxfa_document.h | |
parent | 48f776f7e801d719683b251dc21ee8c0e3250d90 (diff) | |
download | pdfium-6bb3b894488fd6f38c096b708980a9f08286ac5c.tar.xz |
Remove CFX_MapPtrToPtr from xfa/fxfa.
Review-Url: https://codereview.chromium.org/2612923002
Diffstat (limited to 'xfa/fxfa/parser/cxfa_document.h')
-rw-r--r-- | xfa/fxfa/parser/cxfa_document.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/xfa/fxfa/parser/cxfa_document.h b/xfa/fxfa/parser/cxfa_document.h index 4fd2d79504..fdd230dca7 100644 --- a/xfa/fxfa/parser/cxfa_document.h +++ b/xfa/fxfa/parser/cxfa_document.h @@ -7,6 +7,8 @@ #ifndef XFA_FXFA_PARSER_CXFA_DOCUMENT_H_ #define XFA_FXFA_PARSER_CXFA_DOCUMENT_H_ +#include <map> + #include "xfa/fxfa/fxfa.h" #include "xfa/fxfa/parser/xfa_localemgr.h" #include "xfa/fxfa/parser/xfa_object.h" @@ -101,7 +103,7 @@ class CXFA_Document { void ClearLayoutData(); - CFX_MapPtrTemplate<uint32_t, CXFA_Node*> m_rgGlobalBinding; + std::map<uint32_t, CXFA_Node*> m_rgGlobalBinding; CXFA_NodeArray m_pPendingPageSet; protected: |