diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-05-14 20:13:40 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-05-14 20:13:40 +0000 |
commit | a7ff4dc7c27c7940daec9cf740f4b7e7638a45ec (patch) | |
tree | 92fb866dde19233d7129486c453f6362780ed11b /core/fpdfapi/font | |
parent | 77c223be193b303b833053a757a2f1f2534da610 (diff) | |
download | pdfium-a7ff4dc7c27c7940daec9cf740f4b7e7638a45ec.tar.xz |
Cleanup CPDF_Form parsing codechromium/3431
This CL folds the StartParse() method of CPDF_Form into the
ParserContent method. The no arguments ParseContent is removed and
ParseContentWithParams renamed to ParseContent. The callsites are
updated to pass the nullptr's.
Bug: chromium:813349
Change-Id: I304b77aef1de1b9aa20e4a3044db5023f5701584
Reviewed-on: https://pdfium-review.googlesource.com/32511
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core/fpdfapi/font')
-rw-r--r-- | core/fpdfapi/font/cpdf_type3font.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/fpdfapi/font/cpdf_type3font.cpp b/core/fpdfapi/font/cpdf_type3font.cpp index 824d6f45d0..c321f87897 100644 --- a/core/fpdfapi/font/cpdf_type3font.cpp +++ b/core/fpdfapi/font/cpdf_type3font.cpp @@ -115,8 +115,7 @@ CPDF_Type3Char* CPDF_Type3Font::LoadChar(uint32_t charcode) { // can change as a result. Thus after it returns, check the cache again for // a cache hit. m_CharLoadingDepth++; - pNewChar->form()->ParseContentWithParams(nullptr, nullptr, pNewChar.get(), - nullptr); + pNewChar->form()->ParseContent(nullptr, nullptr, pNewChar.get(), nullptr); m_CharLoadingDepth--; it = m_CacheMap.find(charcode); if (it != m_CacheMap.end()) |