diff options
author | tsepez <tsepez@chromium.org> | 2016-05-16 14:10:22 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-05-16 14:10:22 -0700 |
commit | 44d83f3f0b90f4c53ca42115d4f1ed614b25c3a7 (patch) | |
tree | f54ee0cd640a9480341844dac86a4178892c94e5 /fpdfsdk/fpdfxfa/include | |
parent | 3cc01f2ba255f4b7584668ee2b8e5ed97792c26d (diff) | |
download | pdfium-44d83f3f0b90f4c53ca42115d4f1ed614b25c3a7.tar.xz |
Use CFX_RetainPtr<> to refcount CPDFXFA_Page
Review-Url: https://codereview.chromium.org/1984693002
Diffstat (limited to 'fpdfsdk/fpdfxfa/include')
-rw-r--r-- | fpdfsdk/fpdfxfa/include/fpdfxfa_page.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/fpdfsdk/fpdfxfa/include/fpdfxfa_page.h b/fpdfsdk/fpdfxfa/include/fpdfxfa_page.h index 0f278912d6..2e08f580ed 100644 --- a/fpdfsdk/fpdfxfa/include/fpdfxfa_page.h +++ b/fpdfsdk/fpdfxfa/include/fpdfxfa_page.h @@ -22,8 +22,11 @@ class CPDFXFA_Page { public: CPDFXFA_Page(CPDFXFA_Document* pDoc, int page_index); - void AddRef() { m_iRef++; } - void Release(); + void Retain() { m_iRef++; } + void Release() { + if (--m_iRef <= 0) + delete this; + } FX_BOOL LoadPage(); FX_BOOL LoadPDFPage(CPDF_Dictionary* pageDict); |