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

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

Issue 2524173002: Merge IFWL and CFWL classes. (Closed)
Patch Set: make chrome build happy 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
Index: xfa/fwl/core/cfwl_eventtarget.h
diff --git a/xfa/fwl/core/cfwl_eventtarget.h b/xfa/fwl/core/cfwl_eventtarget.h
index 3ed8e9a4b78963b252e630e24868979310ab8316..5f0ee35b9b19973a8255c832f90f89a3be341d1c 100644
--- a/xfa/fwl/core/cfwl_eventtarget.h
+++ b/xfa/fwl/core/cfwl_eventtarget.h
@@ -13,22 +13,22 @@
#include "xfa/fwl/core/cfwl_event.h"
class CFWL_Event;
-class IFWL_Widget;
+class CFWL_Widget;
class CFWL_EventTarget {
public:
- explicit CFWL_EventTarget(IFWL_Widget* pListener);
+ explicit CFWL_EventTarget(CFWL_Widget* pListener);
~CFWL_EventTarget();
- void SetEventSource(IFWL_Widget* pSource);
+ void SetEventSource(CFWL_Widget* pSource);
bool ProcessEvent(CFWL_Event* pEvent);
bool IsInvalid() const { return m_bInvalid; }
void FlagInvalid() { m_bInvalid = true; }
private:
- std::set<IFWL_Widget*> m_widgets;
- IFWL_Widget* m_pListener;
+ std::set<CFWL_Widget*> m_widgets;
+ CFWL_Widget* m_pListener;
bool m_bInvalid;
};

Powered by Google App Engine
This is Rietveld 408576698