diff options
author | dsinclair <dsinclair@chromium.org> | 2016-11-21 17:57:21 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-11-21 17:57:21 -0800 |
commit | 4bd717ba4e40d4d3775c5e19334f4733fca8cb42 (patch) | |
tree | 473e54389cec12eebaade8189948e34705c52edc /xfa/fwl/core/cfwl_notedriver.h | |
parent | 12ff1eba3eaa4a27089f1837a0826dfcac163db2 (diff) | |
download | pdfium-4bd717ba4e40d4d3775c5e19334f4733fca8cb42.tar.xz |
Remove FwlEventMask
The only value being set from the enum was the All Mask. This was always set
through the default value in the methods. This Cl removes the mask code completely
and updates surrounding code as needed.
Review-Url: https://codereview.chromium.org/2515243003
Diffstat (limited to 'xfa/fwl/core/cfwl_notedriver.h')
-rw-r--r-- | xfa/fwl/core/cfwl_notedriver.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/xfa/fwl/core/cfwl_notedriver.h b/xfa/fwl/core/cfwl_notedriver.h index a9b2c715db..9e5fa99f6a 100644 --- a/xfa/fwl/core/cfwl_notedriver.h +++ b/xfa/fwl/core/cfwl_notedriver.h @@ -29,9 +29,7 @@ class CFWL_NoteDriver { void SendEvent(CFWL_Event* pNote); - void RegisterEventTarget(IFWL_Widget* pListener, - IFWL_Widget* pEventSource = nullptr, - uint32_t dwFilter = FWL_EVENT_ALL_MASK); + void RegisterEventTarget(IFWL_Widget* pListener, IFWL_Widget* pEventSource); void UnregisterEventTarget(IFWL_Widget* pListener); void ClearEventTargets(bool bRemoveAll); |