diff options
author | Tom Sepez <tsepez@chromium.org> | 2017-05-16 15:40:23 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-05-16 23:11:57 +0000 |
commit | 365333552cf67b7c97c4093177e7ed7b43f540ab (patch) | |
tree | 44dfc8a496ff586def85d34e0a07893445b79cc7 /xfa/fxgraphics | |
parent | dde95d8be9bc2817e34429fc38ee6d89d6d5ab75 (diff) | |
download | pdfium-365333552cf67b7c97c4093177e7ed7b43f540ab.tar.xz |
CFDE_RenderDevice::m_bOwnerDevice is always false
So remove it.
But they probably wanted it to be true in one place, because
it looks like a leak. So find a better way to own the object.
Change-Id: I15937e29da5ce8b380f82cb20ee3ecc3f49b8ca3
Reviewed-on: https://pdfium-review.googlesource.com/5473
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxgraphics')
-rw-r--r-- | xfa/fxgraphics/cfx_graphics.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxgraphics/cfx_graphics.h b/xfa/fxgraphics/cfx_graphics.h index b2e2cd1c88..8785a387d6 100644 --- a/xfa/fxgraphics/cfx_graphics.h +++ b/xfa/fxgraphics/cfx_graphics.h @@ -104,7 +104,7 @@ class CFX_Graphics { void SetDIBitsWithMatrix(const CFX_RetainPtr<CFX_DIBSource>& source, CFX_Matrix* matrix); - CFX_RenderDevice* m_renderDevice; + CFX_RenderDevice* const m_renderDevice; // Not owned. std::vector<std::unique_ptr<TInfo>> m_infoStack; }; |