diff options
author | tsepez <tsepez@chromium.org> | 2016-05-19 21:06:16 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-05-19 21:06:16 -0700 |
commit | 788ac38e25fc6c000b36ec1722764673e192dea3 (patch) | |
tree | 53cca2497138207f7f9e6366b945fa5e20ac6e85 /xfa/fde/css/fde_cssdeclaration.h | |
parent | 8b45eb1443e5a31f6f172fa16169b9b56177b639 (diff) | |
download | pdfium-788ac38e25fc6c000b36ec1722764673e192dea3.tar.xz |
Use std::unordered_map for CFDE_CSSStyleSheet::m_StringCache
Get rid of some LPC typedefs while we're at it.
Review-Url: https://codereview.chromium.org/1990363003
Diffstat (limited to 'xfa/fde/css/fde_cssdeclaration.h')
-rw-r--r-- | xfa/fde/css/fde_cssdeclaration.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/xfa/fde/css/fde_cssdeclaration.h b/xfa/fde/css/fde_cssdeclaration.h index 4fa6858f97..d33e7107c8 100644 --- a/xfa/fde/css/fde_cssdeclaration.h +++ b/xfa/fde/css/fde_cssdeclaration.h @@ -7,6 +7,8 @@ #ifndef XFA_FDE_CSS_FDE_CSSDECLARATION_H_ #define XFA_FDE_CSS_FDE_CSSDECLARATION_H_ +#include <unordered_map> + #include "xfa/fde/css/fde_cssdatatable.h" class FDE_CSSPropertyHolder : public CFX_Target { @@ -26,8 +28,8 @@ class FDE_CSSCustomProperty : public CFX_Target { struct FDE_CSSPROPERTYARGS { IFX_MemoryAllocator* pStaticStore; - CFX_MapPtrToPtr* pStringCache; - FDE_LPCCSSPROPERTYTABLE pProperty; + std::unordered_map<uint32_t, FX_WCHAR*>* pStringCache; + const FDE_CSSPROPERTYTABLE* pProperty; }; class CFDE_CSSDeclaration : public CFX_Target { |