diff options
author | Lei Zhang <thestig@chromium.org> | 2015-06-12 19:14:11 -0700 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-06-12 19:14:11 -0700 |
commit | 1972b16849fedfda675eacd5c8594b54dbd1264d (patch) | |
tree | 114ce0930a4af4cf5d861b5e84f0d9d7168ec935 /core/include/fpdfapi | |
parent | 3218fffe6f92b62d05ab5c2d1c78285a0a0f0647 (diff) | |
download | pdfium-1972b16849fedfda675eacd5c8594b54dbd1264d.tar.xz |
Remove unneeded checks in CPDF_DocPageData::GetFontFileStreamAcc().
The input cannot be null. Same for CPDF_Document::LoadFontFile().
Also set the contract for CPDF_Document::LoadFont() and adjust callers
accordingly.
Also remove unused CPDF_Document::FindFont().
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1184673002.
Diffstat (limited to 'core/include/fpdfapi')
-rw-r--r-- | core/include/fpdfapi/fpdf_parser.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/core/include/fpdfapi/fpdf_parser.h b/core/include/fpdfapi/fpdf_parser.h index 0a08df8df9..a5020ebd2c 100644 --- a/core/include/fpdfapi/fpdf_parser.h +++ b/core/include/fpdfapi/fpdf_parser.h @@ -114,12 +114,8 @@ public: FX_BOOL IsFormStream(FX_DWORD objnum, FX_BOOL& bForm) const; - - - - CPDF_Font* LoadFont(CPDF_Dictionary* pFontDict); - - CPDF_Font* FindFont(CPDF_Dictionary* pFontDict); + // |pFontDict| must not be null. + CPDF_Font* LoadFont(CPDF_Dictionary* pFontDict); CPDF_ColorSpace* LoadColorSpace(CPDF_Object* pCSObj, CPDF_Dictionary* pResources = NULL); |