diff options
author | tsepez <tsepez@chromium.org> | 2016-03-25 14:38:58 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-03-25 14:38:58 -0700 |
commit | deee3d2ee201d62e7ef41e7d8378d7f52e057a9c (patch) | |
tree | f9f64d5f24376108a697299f8574ae3a7fe3511b /xfa/fwl/core/ifwl_adapterwidgetmgr.h | |
parent | 736f28ab2434e2da1de66ff91b64741483ff9cba (diff) | |
download | pdfium-deee3d2ee201d62e7ef41e7d8378d7f52e057a9c.tar.xz |
Remove FX_DWORD from XFA, part 2
Some headers were missed in the previous CL.
Review URL: https://codereview.chromium.org/1835703002
Diffstat (limited to 'xfa/fwl/core/ifwl_adapterwidgetmgr.h')
-rw-r--r-- | xfa/fwl/core/ifwl_adapterwidgetmgr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fwl/core/ifwl_adapterwidgetmgr.h b/xfa/fwl/core/ifwl_adapterwidgetmgr.h index 80dbfd9bf5..1e8405ab2f 100644 --- a/xfa/fwl/core/ifwl_adapterwidgetmgr.h +++ b/xfa/fwl/core/ifwl_adapterwidgetmgr.h @@ -38,7 +38,7 @@ class IFWL_AdapterWidgetMgr { virtual FWL_ERR SetWidgetCaption(IFWL_Widget* pWidget, const CFX_WideStringC& wsCaption) = 0; virtual FWL_ERR SetBorderRegion(IFWL_Widget* pWidget, CFX_Path* pPath) = 0; - virtual FWL_ERR SetTransparent(IFWL_Widget* pWidget, FX_DWORD dwAlpha) = 0; + virtual FWL_ERR SetTransparent(IFWL_Widget* pWidget, uint32_t dwAlpha) = 0; virtual FWL_ERR ShowWidget(IFWL_Widget* pWidget) = 0; virtual FWL_ERR HideWidget(IFWL_Widget* pWidget) = 0; virtual FWL_ERR SetNormal(IFWL_Widget* pWidget) = 0; @@ -58,7 +58,7 @@ class IFWL_AdapterWidgetMgr { void* pDC, CFX_RectF* pClip = 0) = 0; virtual void* GetWindow(IFWL_Widget* pWidget) = 0; - virtual FX_DWORD GetKeyState(FX_DWORD dwVirtKey) = 0; + virtual uint32_t GetKeyState(uint32_t dwVirtKey) = 0; virtual FWL_ERR RunLoop(IFWL_Widget* widget) = 0; virtual FWL_ERR EndLoop() = 0; virtual FWL_ERR InitMenu(IFWL_Menu* pMenu, IFWL_MenuDP* pMenuData) = 0; |