Index: xfa/fxfa/include/xfa_ffdoc.h |
diff --git a/xfa/fxfa/include/xfa_ffdoc.h b/xfa/fxfa/include/xfa_ffdoc.h |
index 9d9af3d9bc366f309709916d461633c67cd59140..1bdefac746260212936626113b14d63951657b1c 100644 |
--- a/xfa/fxfa/include/xfa_ffdoc.h |
+++ b/xfa/fxfa/include/xfa_ffdoc.h |
@@ -7,6 +7,8 @@ |
#ifndef XFA_FXFA_INCLUDE_XFA_FFDOC_H_ |
#define XFA_FXFA_INCLUDE_XFA_FFDOC_H_ |
+#include <map> |
+ |
#include "xfa/fxfa/include/fxfa.h" |
#include "xfa/fxfa/parser/xfa_document.h" |
@@ -56,8 +58,8 @@ class CXFA_FFDoc { |
CXFA_FFApp* m_pApp; |
CXFA_FFNotify* m_pNotify; |
CPDF_Document* m_pPDFDoc; |
- CFX_MapPtrToPtr m_mapNamedImages; |
- CFX_MapPtrToPtr m_mapTypeToDocView; |
+ std::map<uint32_t, FX_IMAGEDIB_AND_DPI> m_HashToDibDpiMap; |
+ std::map<uint32_t, CXFA_FFDocView*> m_TypeToDocViewMap; |
Lei Zhang
2016/04/22 23:37:50
Should the value in the map be a std::unique_ptr?
|
uint32_t m_dwDocType; |
FX_BOOL m_bOwnStream; |
}; |