From 788ac38e25fc6c000b36ec1722764673e192dea3 Mon Sep 17 00:00:00 2001 From: tsepez Date: Thu, 19 May 2016 21:06:16 -0700 Subject: 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 --- xfa/fde/css/fde_cssstylesheet.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'xfa/fde/css/fde_cssstylesheet.h') diff --git a/xfa/fde/css/fde_cssstylesheet.h b/xfa/fde/css/fde_cssstylesheet.h index a78ae487bb..9362fb15b4 100644 --- a/xfa/fde/css/fde_cssstylesheet.h +++ b/xfa/fde/css/fde_cssstylesheet.h @@ -7,6 +7,8 @@ #ifndef XFA_FDE_CSS_FDE_CSSSTYLESHEET_H_ #define XFA_FDE_CSS_FDE_CSSSTYLESHEET_H_ +#include + #include "core/fxcrt/include/fx_ext.h" #include "xfa/fde/css/fde_cssdeclaration.h" @@ -134,7 +136,7 @@ class CFDE_CSSStyleSheet : public IFDE_CSSStyleSheet, public CFX_Target { CFDE_CSSRuleArray m_RuleArray; CFX_WideString m_szUrl; CFDE_CSSSelectorArray m_Selectors; - CFX_MapPtrToPtr m_StringCache; + std::unordered_map m_StringCache; }; #endif // XFA_FDE_CSS_FDE_CSSSTYLESHEET_H_ -- cgit v1.2.3