diff options
author | tsepez <tsepez@chromium.org> | 2017-01-04 10:09:45 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2017-01-04 10:09:45 -0800 |
commit | 6745f96fab41e2b46f57a3717b034a4064c0de02 (patch) | |
tree | ad3d8df2b200d99c6c32ea0ddd7e0ce53118c641 /fpdfsdk/pdfwindow/PWL_Wnd.h | |
parent | fff400a5df032c2203eef9f76a5dbb164672df3d (diff) | |
download | pdfium-6745f96fab41e2b46f57a3717b034a4064c0de02.tar.xz |
Remove CFX_ArrayTemplate, use unique_ptr in fpdfsdk/pdfwindow
Review-Url: https://codereview.chromium.org/2594153003
Diffstat (limited to 'fpdfsdk/pdfwindow/PWL_Wnd.h')
-rw-r--r-- | fpdfsdk/pdfwindow/PWL_Wnd.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/fpdfsdk/pdfwindow/PWL_Wnd.h b/fpdfsdk/pdfwindow/PWL_Wnd.h index bba14f26bf..ce3d58cddc 100644 --- a/fpdfsdk/pdfwindow/PWL_Wnd.h +++ b/fpdfsdk/pdfwindow/PWL_Wnd.h @@ -413,16 +413,13 @@ class CPWL_Wnd : public CPWL_TimerHandler { CPWL_MsgControl* GetMsgControl() const; protected: - CFX_ArrayTemplate<CPWL_Wnd*> m_aChildren; + std::vector<CPWL_Wnd*> m_Children; private: PWL_CREATEPARAM m_sPrivateParam; - CPWL_ScrollBar* m_pVScrollBar; - CFX_FloatRect m_rcWindow; CFX_FloatRect m_rcClip; - bool m_bCreated; bool m_bVisible; bool m_bNotifying; |