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_cssstylesheet.cpp | |
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_cssstylesheet.cpp')
-rw-r--r-- | xfa/fde/css/fde_cssstylesheet.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fde/css/fde_cssstylesheet.cpp b/xfa/fde/css/fde_cssstylesheet.cpp index b07031c354..dcfd302a58 100644 --- a/xfa/fde/css/fde_cssstylesheet.cpp +++ b/xfa/fde/css/fde_cssstylesheet.cpp @@ -102,7 +102,7 @@ void CFDE_CSSStyleSheet::Reset() { } m_RuleArray.RemoveAll(); m_Selectors.RemoveAll(); - m_StringCache.RemoveAll(); + m_StringCache.clear(); delete m_pAllocator; m_pAllocator = nullptr; } @@ -175,7 +175,7 @@ FX_BOOL CFDE_CSSStyleSheet::LoadFromSyntax(CFDE_CSSSyntaxParser* pSyntax) { } } while (eStatus >= FDE_CSSSYNTAXSTATUS_None); m_Selectors.RemoveAll(); - m_StringCache.RemoveAll(); + m_StringCache.clear(); return eStatus != FDE_CSSSYNTAXSTATUS_Error; } FDE_CSSSYNTAXSTATUS CFDE_CSSStyleSheet::LoadMediaRule( |