| Index: xfa/fde/css/fde_cssstylesheet.h
|
| diff --git a/xfa/fde/css/fde_cssstylesheet.h b/xfa/fde/css/fde_cssstylesheet.h
|
| index d4781f8a8df7963b238a38a22e7df3064e0fc2cc..b013e2d2bd101f50d9a051026032de50df8577fd 100644
|
| --- a/xfa/fde/css/fde_cssstylesheet.h
|
| +++ b/xfa/fde/css/fde_cssstylesheet.h
|
| @@ -7,6 +7,7 @@
|
| #ifndef XFA_FDE_CSS_FDE_CSSSTYLESHEET_H_
|
| #define XFA_FDE_CSS_FDE_CSSSTYLESHEET_H_
|
|
|
| +#include <memory>
|
| #include <unordered_map>
|
|
|
| #include "core/fxcrt/include/fx_ext.h"
|
| @@ -133,7 +134,7 @@ class CFDE_CSSStyleSheet : public IFDE_CSSStyleSheet, public CFX_Target {
|
| uint16_t m_wCodePage;
|
| uint16_t m_wRefCount;
|
| uint32_t m_dwMediaList;
|
| - IFX_MemoryAllocator* m_pAllocator;
|
| + std::unique_ptr<IFX_MemoryAllocator> m_pAllocator;
|
| CFX_MassArrayTemplate<IFDE_CSSRule*> m_RuleArray;
|
| CFX_WideString m_szUrl;
|
| CFX_ArrayTemplate<CFDE_CSSSelector*> m_Selectors;
|
|
|