summaryrefslogtreecommitdiff
path: root/xfa/fwl/cfwl_message.h
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2018-07-02 16:44:02 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-07-02 16:44:02 +0000
commite353d72449a9298410dc479bf27410d83e56b215 (patch)
tree814ace49b09aeb0ba440550b1b29fbe4af8b6ea6 /xfa/fwl/cfwl_message.h
parent09646f2d0497eb4cdcf2f3843585faa9264196f4 (diff)
downloadpdfium-e353d72449a9298410dc479bf27410d83e56b215.tar.xz
Use UnownedPtr<> in cfwl_event.h and cfwl_message.h
Change-Id: I1981eb23006db203e845e954a7847cfa992d5e03 Reviewed-on: https://pdfium-review.googlesource.com/36710 Reviewed-by: Lei Zhang <thestig@chromium.org> Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'xfa/fwl/cfwl_message.h')
-rw-r--r--xfa/fwl/cfwl_message.h14
1 files changed, 10 insertions, 4 deletions
diff --git a/xfa/fwl/cfwl_message.h b/xfa/fwl/cfwl_message.h
index 99cf01b5b8..2d97895cc8 100644
--- a/xfa/fwl/cfwl_message.h
+++ b/xfa/fwl/cfwl_message.h
@@ -11,6 +11,7 @@
#include "core/fxcrt/fx_string.h"
#include "core/fxcrt/fx_system.h"
+#include "core/fxcrt/unowned_ptr.h"
class CFWL_Widget;
@@ -21,16 +22,21 @@ class CFWL_Message {
explicit CFWL_Message(Type type);
CFWL_Message(Type type, CFWL_Widget* pSrcTarget);
CFWL_Message(Type type, CFWL_Widget* pSrcTarget, CFWL_Widget* pDstTarget);
+ CFWL_Message(const CFWL_Message& that);
virtual ~CFWL_Message();
virtual std::unique_ptr<CFWL_Message> Clone();
- Type GetType() const { return m_type; }
- CFWL_Widget* m_pSrcTarget;
- CFWL_Widget* m_pDstTarget;
+ Type GetType() const { return m_type; }
+ CFWL_Widget* GetSrcTarget() const { return m_pSrcTarget.Get(); }
+ CFWL_Widget* GetDstTarget() const { return m_pDstTarget.Get(); }
+ void SetSrcTarget(CFWL_Widget* pWidget) { m_pSrcTarget = pWidget; }
+ void SetDstTarget(CFWL_Widget* pWidget) { m_pDstTarget = pWidget; }
private:
- Type m_type;
+ const Type m_type;
+ UnownedPtr<CFWL_Widget> m_pSrcTarget;
+ UnownedPtr<CFWL_Widget> m_pDstTarget;
};
#endif // XFA_FWL_CFWL_MESSAGE_H_