summaryrefslogtreecommitdiff
path: root/core/fpdfdoc/cpvt_fontmap.h
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2017-05-23 16:18:28 -0700
committerChromium commit bot <commit-bot@chromium.org>2017-05-24 01:28:39 +0000
commit033e565d8244953afe8eab3d0c7ee1ed9863c921 (patch)
tree410cbe152379180ff2fd3411b289be6fa31e3c82 /core/fpdfdoc/cpvt_fontmap.h
parent655c783b8077f18e17418a3aab9b5a07c8055049 (diff)
downloadpdfium-033e565d8244953afe8eab3d0c7ee1ed9863c921.tar.xz
Convert to CFX_UnownedPtr, part 5
Change-Id: Ibdb20fca7e4daae9d61286df4801ac02faf3b281 Reviewed-on: https://pdfium-review.googlesource.com/5831 Commit-Queue: Lei Zhang <thestig@chromium.org> Reviewed-by: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'core/fpdfdoc/cpvt_fontmap.h')
-rw-r--r--core/fpdfdoc/cpvt_fontmap.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/core/fpdfdoc/cpvt_fontmap.h b/core/fpdfdoc/cpvt_fontmap.h
index 6080010cac..da69463d95 100644
--- a/core/fpdfdoc/cpvt_fontmap.h
+++ b/core/fpdfdoc/cpvt_fontmap.h
@@ -10,6 +10,7 @@
#include <stdint.h>
#include "core/fpdfdoc/ipvt_fontmap.h"
+#include "core/fxcrt/cfx_unowned_ptr.h"
#include "core/fxcrt/fx_string.h"
class CPDF_Document;
@@ -38,11 +39,11 @@ class CPVT_FontMap : public IPVT_FontMap {
CFX_ByteString* sSysFontAlias);
private:
- CPDF_Document* const m_pDocument;
- const CPDF_Dictionary* const m_pResDict;
- CPDF_Font* const m_pDefFont;
+ CFX_UnownedPtr<CPDF_Document> const m_pDocument;
+ CFX_UnownedPtr<CPDF_Dictionary> const m_pResDict;
+ CFX_UnownedPtr<CPDF_Font> const m_pDefFont;
+ CFX_UnownedPtr<CPDF_Font> m_pSysFont;
const CFX_ByteString m_sDefFontAlias;
- CPDF_Font* m_pSysFont;
CFX_ByteString m_sSysFontAlias;
};