diff options
author | Tom Sepez <tsepez@chromium.org> | 2017-01-24 14:24:36 -0800 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-01-25 15:37:27 +0000 |
commit | 03de88464cc818ac4353de3e7ec49b98166bcdc5 (patch) | |
tree | 4b28fac20a0202a67d54514686d36df74122e3b9 /xfa/fxfa/app/cxfa_textuserdata.cpp | |
parent | d198e406d13b831ffd4b1a2bfdf12522dea31205 (diff) | |
download | pdfium-03de88464cc818ac4353de3e7ec49b98166bcdc5.tar.xz |
Remove last usage of IFX_Retainable.chromium/2993
Change-Id: Id2ece818c80e8cce4748b9a237871131a7acd6d1
Reviewed-on: https://pdfium-review.googlesource.com/2354
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/app/cxfa_textuserdata.cpp')
-rw-r--r-- | xfa/fxfa/app/cxfa_textuserdata.cpp | 22 |
1 files changed, 4 insertions, 18 deletions
diff --git a/xfa/fxfa/app/cxfa_textuserdata.cpp b/xfa/fxfa/app/cxfa_textuserdata.cpp index e436ab2ae9..e4e549316a 100644 --- a/xfa/fxfa/app/cxfa_textuserdata.cpp +++ b/xfa/fxfa/app/cxfa_textuserdata.cpp @@ -13,25 +13,11 @@ CXFA_TextUserData::CXFA_TextUserData( const CFX_RetainPtr<CFDE_CSSComputedStyle>& pStyle) - : m_pStyle(pStyle), m_pLinkData(nullptr), m_dwRefCount(0) {} + : m_pStyle(pStyle) {} CXFA_TextUserData::CXFA_TextUserData( const CFX_RetainPtr<CFDE_CSSComputedStyle>& pStyle, - CXFA_LinkUserData* pLinkData) - : m_pStyle(pStyle), m_pLinkData(pLinkData), m_dwRefCount(0) {} + const CFX_RetainPtr<CXFA_LinkUserData>& pLinkData) + : m_pStyle(pStyle), m_pLinkData(pLinkData) {} -CXFA_TextUserData::~CXFA_TextUserData() { - if (m_pLinkData) - m_pLinkData->Release(); -} - -uint32_t CXFA_TextUserData::Retain() { - return ++m_dwRefCount; -} - -uint32_t CXFA_TextUserData::Release() { - uint32_t dwRefCount = --m_dwRefCount; - if (dwRefCount == 0) - delete this; - return dwRefCount; -} +CXFA_TextUserData::~CXFA_TextUserData() {} |