summaryrefslogtreecommitdiff
path: root/core/fpdfapi/cmaps/GB1
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-10-04 13:25:01 -0400
committerChromium commit bot <commit-bot@chromium.org>2017-10-04 17:48:24 +0000
commit0181a84160e754717ebd26290628220f998ff66f (patch)
tree141b38e15a0b2f0c71ba612ebdf82be32f94596e /core/fpdfapi/cmaps/GB1
parent6ed297c5b418f8c9435b656b565cf48e6dcc2836 (diff)
downloadpdfium-0181a84160e754717ebd26290628220f998ff66f.tar.xz
Make CPDF_FontGlobals members private
This CL makes the embedded maps and the cmap manager private to CPDF_FontGlobals and adds accessor methods as needed. Change-Id: I50350fcfad5428defe5e68d9d3b29e8961e66e9f Reviewed-on: https://pdfium-review.googlesource.com/15412 Commit-Queue: dsinclair <dsinclair@chromium.org> Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Diffstat (limited to 'core/fpdfapi/cmaps/GB1')
-rw-r--r--core/fpdfapi/cmaps/GB1/cmaps_gb1.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/core/fpdfapi/cmaps/GB1/cmaps_gb1.cpp b/core/fpdfapi/cmaps/GB1/cmaps_gb1.cpp
index 5776b18c0e..a91da32369 100644
--- a/core/fpdfapi/cmaps/GB1/cmaps_gb1.cpp
+++ b/core/fpdfapi/cmaps/GB1/cmaps_gb1.cpp
@@ -45,10 +45,8 @@ static const FXCMAP_CMap g_FXCMAP_GB1_cmaps[] = {
void CPDF_ModuleMgr::LoadEmbeddedGB1CMaps() {
CPDF_FontGlobals* pFontGlobals =
CPDF_ModuleMgr::Get()->GetPageModule()->GetFontGlobals();
- pFontGlobals->m_EmbeddedCharsets[CIDSET_GB1].m_pMapList = g_FXCMAP_GB1_cmaps;
- pFontGlobals->m_EmbeddedCharsets[CIDSET_GB1].m_Count =
- FX_ArraySize(g_FXCMAP_GB1_cmaps);
- pFontGlobals->m_EmbeddedToUnicodes[CIDSET_GB1].m_pMap =
- g_FXCMAP_GB1CID2Unicode_5;
- pFontGlobals->m_EmbeddedToUnicodes[CIDSET_GB1].m_Count = 30284;
+ pFontGlobals->SetEmbeddedCharset(CIDSET_GB1, g_FXCMAP_GB1_cmaps,
+ FX_ArraySize(g_FXCMAP_GB1_cmaps));
+ pFontGlobals->SetEmbeddedToUnicode(CIDSET_GB1, g_FXCMAP_GB1CID2Unicode_5,
+ 30284);
}