diff options
author | Lei Zhang <thestig@chromium.org> | 2017-08-15 13:56:43 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-08-15 21:33:32 +0000 |
commit | eb14e04c79c575146fe96c025dbf56b7440870c7 (patch) | |
tree | 323ca30b3b5b2df46427e336c3482901ca26db8f /fpdfsdk/pwl/cpwl_wnd.h | |
parent | 6e524ad89eac22f0e5d5475652ec78c609b788e8 (diff) | |
download | pdfium-eb14e04c79c575146fe96c025dbf56b7440870c7.tar.xz |
Change a bunch of methods to take a const CFX_Matrix& param.chromium/3187
Simplify some code along the way.
Change-Id: I0022c8a82188192c63b9ac0bc87e9b9dbf983040
Reviewed-on: https://pdfium-review.googlesource.com/10852
Reviewed-by: dsinclair <dsinclair@chromium.org>
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'fpdfsdk/pwl/cpwl_wnd.h')
-rw-r--r-- | fpdfsdk/pwl/cpwl_wnd.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/fpdfsdk/pwl/cpwl_wnd.h b/fpdfsdk/pwl/cpwl_wnd.h index 78edaa26e5..3c6c2824e2 100644 --- a/fpdfsdk/pwl/cpwl_wnd.h +++ b/fpdfsdk/pwl/cpwl_wnd.h @@ -215,7 +215,8 @@ class CPWL_Wnd : public CPWL_TimerHandler, public CFX_Observable<CPWL_Wnd> { void SetCapture(); void ReleaseCapture(); - void DrawAppearance(CFX_RenderDevice* pDevice, CFX_Matrix* pUser2Device); + void DrawAppearance(CFX_RenderDevice* pDevice, + const CFX_Matrix& mtUser2Device); CFX_Color GetBackgroundColor() const; void SetBackgroundColor(const CFX_Color& color); @@ -278,7 +279,7 @@ class CPWL_Wnd : public CPWL_TimerHandler, public CFX_Observable<CPWL_Wnd> { virtual void RePosChildWnd(); virtual void DrawThisAppearance(CFX_RenderDevice* pDevice, - CFX_Matrix* pUser2Device); + const CFX_Matrix& mtUser2Device); virtual void OnCreate(PWL_CREATEPARAM& cp); virtual void OnCreated(); @@ -314,7 +315,8 @@ class CPWL_Wnd : public CPWL_TimerHandler, public CFX_Observable<CPWL_Wnd> { CFX_PointF ParentToChild(const CFX_PointF& point) const; CFX_FloatRect ParentToChild(const CFX_FloatRect& rect) const; - void DrawChildAppearance(CFX_RenderDevice* pDevice, CFX_Matrix* pUser2Device); + void DrawChildAppearance(CFX_RenderDevice* pDevice, + const CFX_Matrix& mtUser2Device); FX_RECT PWLtoWnd(const CFX_FloatRect& rect) const; |