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

Issue 1948583002: Remove FWL_WGTHITTEST_* defines in favour of enum class. (Closed)

Created:
4 years, 7 months ago by dsinclair
Modified:
4 years, 7 months ago
Reviewers:
Tom Sepez, Lei Zhang
CC:
pdfium-reviews_googlegroups.com
Base URL:
https://pdfium.googlesource.com/pdfium.git@master
Target Ref:
refs/heads/master
Project:
pdfium
Visibility:
Public.

Description

Remove FWL_WGTHITTEST_* defines in favour of enum class. This Cl updates the FWL_WGTHITTEST_ defines to an enum class and fixes up any code issues. Committed: https://pdfium.googlesource.com/pdfium/+/89fcde88f0c03da77d7fd83dece7726d66fd190e

Patch Set 1 #

Total comments: 4

Patch Set 2 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+180 lines, -211 lines) Patch
M BUILD.gn View 1 1 chunk +1 line, -0 lines 0 comments Download
M fpdfsdk/DEPS View 1 chunk +1 line, -0 lines 0 comments Download
M fpdfsdk/fsdk_annothandler.cpp View 1 3 chunks +3 lines, -10 lines 0 comments Download
M xfa.gyp View 1 1 chunk +1 line, -0 lines 0 comments Download
M xfa/fwl/basewidget/fwl_comboboximp.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M xfa/fwl/basewidget/fwl_comboboximp.cpp View 1 2 chunks +9 lines, -12 lines 0 comments Download
M xfa/fwl/basewidget/fwl_datetimepickerimp.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M xfa/fwl/basewidget/fwl_datetimepickerimp.cpp View 1 2 chunks +17 lines, -23 lines 0 comments Download
M xfa/fwl/basewidget/fwl_editimp.h View 1 1 chunk +1 line, -1 line 0 comments Download
M xfa/fwl/basewidget/fwl_editimp.cpp View 1 1 chunk +5 lines, -5 lines 0 comments Download
M xfa/fwl/basewidget/fwl_listboximp.h View 1 1 chunk +1 line, -1 line 0 comments Download
M xfa/fwl/basewidget/fwl_listboximp.cpp View 1 1 chunk +8 lines, -11 lines 0 comments Download
M xfa/fwl/basewidget/fwl_spinbuttonimp.h View 1 1 chunk +1 line, -1 line 0 comments Download
M xfa/fwl/basewidget/fwl_spinbuttonimp.cpp View 1 1 chunk +13 lines, -18 lines 0 comments Download
M xfa/fwl/basewidget/ifwl_spinbutton.h View 1 chunk +0 lines, -2 lines 0 comments Download
M xfa/fwl/core/fwl_formimp.h View 1 1 chunk +1 line, -1 line 0 comments Download
M xfa/fwl/core/fwl_formimp.cpp View 1 2 chunks +28 lines, -40 lines 0 comments Download
M xfa/fwl/core/fwl_widgetdef.h View 1 chunk +1 line, -22 lines 0 comments Download
M xfa/fwl/core/fwl_widgetimp.h View 1 2 chunks +2 lines, -1 line 0 comments Download
M xfa/fwl/core/fwl_widgetimp.cpp View 1 2 chunks +9 lines, -12 lines 0 comments Download
M xfa/fwl/core/ifwl_widget.h View 1 1 chunk +1 line, -1 line 0 comments Download
A xfa/fwl/core/include/fwl_widgethit.h View 1 1 chunk +35 lines, -0 lines 0 comments Download
M xfa/fwl/lightwidget/cfwl_widget.h View 1 1 chunk +1 line, -1 line 0 comments Download
M xfa/fwl/lightwidget/cfwl_widget.cpp View 1 1 chunk +2 lines, -2 lines 0 comments Download
M xfa/fxfa/app/xfa_fffield.h View 1 1 chunk +1 line, -1 line 0 comments Download
M xfa/fxfa/app/xfa_fffield.cpp View 1 1 chunk +8 lines, -12 lines 0 comments Download
M xfa/fxfa/app/xfa_ffsignature.h View 1 1 chunk +1 line, -1 line 0 comments Download
M xfa/fxfa/app/xfa_ffsignature.cpp View 1 1 chunk +8 lines, -12 lines 0 comments Download
M xfa/fxfa/app/xfa_fftext.h View 1 1 chunk +1 line, -1 line 0 comments Download
M xfa/fxfa/app/xfa_fftext.cpp View 1 1 chunk +6 lines, -8 lines 0 comments Download
M xfa/fxfa/app/xfa_ffwidget.cpp View 1 1 chunk +2 lines, -2 lines 0 comments Download
M xfa/fxfa/app/xfa_ffwidgethandler.cpp View 1 1 chunk +4 lines, -4 lines 0 comments Download
M xfa/fxfa/include/xfa_ffwidget.h View 1 2 chunks +2 lines, -1 line 0 comments Download
M xfa/fxfa/include/xfa_ffwidgethandler.h View 1 2 chunks +2 lines, -1 line 0 comments Download

Messages

Total messages: 9 (4 generated)
dsinclair
PTAL.
4 years, 7 months ago (2016-05-03 18:13:09 UTC) #2
Tom Sepez
LGTM otherwise. https://codereview.chromium.org/1948583002/diff/1/fpdfsdk/fsdk_annothandler.cpp File fpdfsdk/fsdk_annothandler.cpp (right): https://codereview.chromium.org/1948583002/diff/1/fpdfsdk/fsdk_annothandler.cpp#newcode823 fpdfsdk/fsdk_annothandler.cpp:823: return (dwHitTest != FWL_WidgetHitTest::Unknown); nit: overparenthesized. https://codereview.chromium.org/1948583002/diff/1/xfa/fwl/core/include/fwl_widgethittest.h ...
4 years, 7 months ago (2016-05-03 18:33:19 UTC) #3
dsinclair
https://codereview.chromium.org/1948583002/diff/1/fpdfsdk/fsdk_annothandler.cpp File fpdfsdk/fsdk_annothandler.cpp (right): https://codereview.chromium.org/1948583002/diff/1/fpdfsdk/fsdk_annothandler.cpp#newcode823 fpdfsdk/fsdk_annothandler.cpp:823: return (dwHitTest != FWL_WidgetHitTest::Unknown); On 2016/05/03 18:33:19, Tom Sepez ...
4 years, 7 months ago (2016-05-03 19:34:48 UTC) #4
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1948583002/20001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1948583002/20001
4 years, 7 months ago (2016-05-03 19:35:09 UTC) #7
commit-bot: I haz the power
4 years, 7 months ago (2016-05-03 20:00:30 UTC) #9
Message was sent while issue was closed.
Committed patchset #2 (id:20001) as
https://pdfium.googlesource.com/pdfium/+/89fcde88f0c03da77d7fd83dece7726d66fd...

Powered by Google App Engine
This is Rietveld 408576698