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

Unified Diff: xfa/fwl/core/cfwl_msgkillfocus.h

Issue 2530993002: Cleanup FWL Event and Message code. (Closed)
Patch Set: Review feedback Created 4 years 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
Index: xfa/fwl/core/cfwl_msgkillfocus.h
diff --git a/xfa/fwl/core/cfwl_msgkillfocus.h b/xfa/fwl/core/cfwl_msgkillfocus.h
index ef687524f976f63937dec517fcf61b5604793ddc..1c176b122a37b4a3960f10a9d28cbd73f82106e1 100644
--- a/xfa/fwl/core/cfwl_msgkillfocus.h
+++ b/xfa/fwl/core/cfwl_msgkillfocus.h
@@ -13,12 +13,12 @@
class CFWL_MsgKillFocus : public CFWL_Message {
public:
- CFWL_MsgKillFocus();
+ explicit CFWL_MsgKillFocus(CFWL_Widget* pSrcTarget);
+ CFWL_MsgKillFocus(CFWL_Widget* pSrcTarget, CFWL_Widget* pDstTarget);
~CFWL_MsgKillFocus() override;
// CFWL_Message
std::unique_ptr<CFWL_Message> Clone() override;
- CFWL_MessageType GetClassID() const override;
CFWL_Widget* m_pSetFocus;
};

Powered by Google App Engine
This is Rietveld 408576698