From 4e62b5c7c5a35c7020d581fb65de4b3fc5ad3c1a Mon Sep 17 00:00:00 2001 From: weili Date: Wed, 10 Aug 2016 11:29:57 -0700 Subject: Use smart pointers for class owned pointers in xfa/fwl/theme Use smart pointers instead of raw pointer to make memory management easier for classes under xfa/fwl/theme. BUG=pdfium:518 Review-Url: https://codereview.chromium.org/2230813002 --- xfa/fwl/theme/cfwl_scrollbartp.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'xfa/fwl/theme/cfwl_scrollbartp.h') diff --git a/xfa/fwl/theme/cfwl_scrollbartp.h b/xfa/fwl/theme/cfwl_scrollbartp.h index ce32f5e774..e9c6222cd3 100644 --- a/xfa/fwl/theme/cfwl_scrollbartp.h +++ b/xfa/fwl/theme/cfwl_scrollbartp.h @@ -7,6 +7,8 @@ #ifndef XFA_FWL_THEME_CFWL_SCROLLBARTP_H_ #define XFA_FWL_THEME_CFWL_SCROLLBARTP_H_ +#include + #include "xfa/fwl/theme/cfwl_widgettp.h" class CFWL_ScrollBarTP : public CFWL_WidgetTP { @@ -57,7 +59,7 @@ class CFWL_ScrollBarTP : public CFWL_WidgetTP { CFX_Matrix* pMatrix = nullptr); void SetThemeData(uint32_t dwID); - struct SBThemeData* m_pThemeData; + std::unique_ptr m_pThemeData; }; #endif // XFA_FWL_THEME_CFWL_SCROLLBARTP_H_ -- cgit v1.2.3