Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(913)

Unified Diff: xfa/fwl/core/ifwl_formproxy.cpp

Issue 2464703006: Fold IFWL*::{Initialize|Finalize} into constructor/destructor (Closed)
Patch Set: Rebase to master Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « xfa/fwl/core/ifwl_formproxy.h ('k') | xfa/fwl/core/ifwl_listbox.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fwl/core/ifwl_formproxy.cpp
diff --git a/xfa/fwl/core/ifwl_formproxy.cpp b/xfa/fwl/core/ifwl_formproxy.cpp
index f79e915378ee02c411333387009b34122223b7ef..dee8973bc7da10fbdb04ea1f338672bf7510e7c6 100644
--- a/xfa/fwl/core/ifwl_formproxy.cpp
+++ b/xfa/fwl/core/ifwl_formproxy.cpp
@@ -6,25 +6,17 @@
#include "xfa/fwl/core/ifwl_formproxy.h"
+#include "third_party/base/ptr_util.h"
#include "xfa/fwl/core/fwl_noteimp.h"
IFWL_FormProxy::IFWL_FormProxy(const IFWL_App* app,
const CFWL_WidgetImpProperties& properties,
IFWL_Widget* pOuter)
- : IFWL_Form(app, properties, pOuter) {}
-
-IFWL_FormProxy::~IFWL_FormProxy() {}
-
-void IFWL_FormProxy::Initialize() {
- IFWL_Widget::Initialize();
- m_pDelegate = new CFWL_FormProxyImpDelegate(this);
+ : IFWL_Form(app, properties, pOuter) {
+ SetDelegate(pdfium::MakeUnique<CFWL_FormProxyImpDelegate>(this));
}
-void IFWL_FormProxy::Finalize() {
- delete m_pDelegate;
- m_pDelegate = nullptr;
- IFWL_Widget::Finalize();
-}
+IFWL_FormProxy::~IFWL_FormProxy() {}
FWL_Type IFWL_FormProxy::GetClassID() const {
return FWL_Type::FormProxy;
« no previous file with comments | « xfa/fwl/core/ifwl_formproxy.h ('k') | xfa/fwl/core/ifwl_listbox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698