diff options
author | dsinclair <dsinclair@chromium.org> | 2016-10-13 11:00:00 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-10-13 11:00:00 -0700 |
commit | a4060a324d606d5a8e1d2a16d3b55a6d14a0ddbf (patch) | |
tree | 10d5adc5e90dc75ddf7d44d4b16ad869ae0bb943 /fpdfsdk | |
parent | b685e6471075bebd26711bc183de3128f54932e3 (diff) | |
download | pdfium-a4060a324d606d5a8e1d2a16d3b55a6d14a0ddbf.tar.xz |
Remove duplicate FWL key flags
The FWL key flags exist in two places, with different values between them.
This CL combines them to be in a single location.
Review-Url: https://codereview.chromium.org/2415743003
Diffstat (limited to 'fpdfsdk')
-rw-r--r-- | fpdfsdk/cpdfsdk_xfawidgethandler.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/fpdfsdk/cpdfsdk_xfawidgethandler.cpp b/fpdfsdk/cpdfsdk_xfawidgethandler.cpp index 0e232748b3..c20b5f4984 100644 --- a/fpdfsdk/cpdfsdk_xfawidgethandler.cpp +++ b/fpdfsdk/cpdfsdk_xfawidgethandler.cpp @@ -14,6 +14,7 @@ #include "fpdfsdk/cpdfsdk_xfawidget.h" #include "fpdfsdk/fpdfxfa/cpdfxfa_document.h" #include "xfa/fwl/core/fwl_widgethit.h" +#include "xfa/fwl/core/ifwl_app.h" #include "xfa/fxfa/fxfa_basic.h" #include "xfa/fxfa/xfa_ffdocview.h" #include "xfa/fxfa/xfa_ffpageview.h" @@ -345,13 +346,6 @@ CXFA_FFWidgetHandler* CPDFSDK_XFAWidgetHandler::GetXFAWidgetHandler( return pDocView->GetWidgetHandler(); } -const uint32_t FWL_KEYFLAG_Ctrl = (1 << 0); -const uint32_t FWL_KEYFLAG_Alt = (1 << 1); -const uint32_t FWL_KEYFLAG_Shift = (1 << 2); -const uint32_t FWL_KEYFLAG_LButton = (1 << 3); -const uint32_t FWL_KEYFLAG_RButton = (1 << 4); -const uint32_t FWL_KEYFLAG_MButton = (1 << 5); - uint32_t CPDFSDK_XFAWidgetHandler::GetFWLFlags(uint32_t dwFlag) { uint32_t dwFWLFlag = 0; |