diff options
author | dsinclair <dsinclair@chromium.org> | 2016-04-19 10:33:32 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-04-19 10:33:32 -0700 |
commit | 11178284eccf22306338cf0d252b8dbb946feb16 (patch) | |
tree | 586cf51746e37d37b20d39cdd5b23e9ad1c0cf2b /xfa/fwl/core/fwl_noteimp.h | |
parent | 2fa0e13ec2a79cc85d5e018a6420e677b28160cc (diff) | |
download | pdfium-11178284eccf22306338cf0d252b8dbb946feb16.tar.xz |
Remove fullscreen code.
The FWL_SetFullScreen() method is never called, remove and all the supporting
fullscreen code.
Review URL: https://codereview.chromium.org/1902083002
Diffstat (limited to 'xfa/fwl/core/fwl_noteimp.h')
-rw-r--r-- | xfa/fwl/core/fwl_noteimp.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/xfa/fwl/core/fwl_noteimp.h b/xfa/fwl/core/fwl_noteimp.h index a0af7ea91e..0a0c8424e8 100644 --- a/xfa/fwl/core/fwl_noteimp.h +++ b/xfa/fwl/core/fwl_noteimp.h @@ -70,7 +70,6 @@ class CFWL_NoteDriver : public IFWL_NoteDriver { void SetHover(IFWL_Widget* pHover); void NotifyTargetHide(IFWL_Widget* pNoteTarget); void NotifyTargetDestroy(IFWL_Widget* pNoteTarget); - void NotifyFullScreenMode(IFWL_Widget* pNoteTarget, FX_BOOL bFullScreen); FWL_ERR RegisterForm(CFWL_WidgetImp* pForm); FWL_ERR UnRegisterForm(CFWL_WidgetImp* pForm); FX_BOOL QueueMessage(CFWL_Message* pMessage); @@ -101,15 +100,12 @@ class CFWL_NoteDriver : public IFWL_NoteDriver { CFX_PtrArray m_noteLoopQueue; CFX_MapPtrToPtr m_eventTargets; int32_t m_sendEventCalled; - FX_BOOL m_bFullScreen; IFWL_Widget* m_pHover; IFWL_Widget* m_pFocus; IFWL_Widget* m_pGrab; CFWL_NoteLoop* m_pNoteLoop; }; -typedef CFX_MapPtrTemplate<void*, uint32_t> CFWL_EventSource; - class CFWL_EventTarget { public: CFWL_EventTarget(CFWL_NoteDriver* pNoteDriver, IFWL_Widget* pListener) @@ -123,7 +119,7 @@ class CFWL_EventTarget { void FlagInvalid() { m_bInvalid = TRUE; } protected: - CFWL_EventSource m_eventSources; + CFX_MapPtrTemplate<void*, uint32_t> m_eventSources; IFWL_Widget* m_pListener; CFWL_NoteDriver* m_pNoteDriver; FX_BOOL m_bInvalid; |