diff options
author | npm <npm@chromium.org> | 2016-09-16 13:57:22 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-09-16 13:57:22 -0700 |
commit | e9988dd65e743a9b70482aa3007cec2c9789f679 (patch) | |
tree | 7314185054a0d4c437bd0b9a962be17e3b106049 /core/fpdfapi/fpdf_parser/include | |
parent | cde5101eb15b24519e89fa500fe37038bc8e2201 (diff) | |
download | pdfium-e9988dd65e743a9b70482aa3007cec2c9789f679.tar.xz |
Reduce duplicated code in CPDF_Document by adding auxiliary methodschromium/2865chromium/2864chromium/2863
ProcessbCJK and CalculateFontDesc methods are used to reduce the code
duplication between AddFont and AddWindowsFont methods.
Review-Url: https://codereview.chromium.org/2341373003
Diffstat (limited to 'core/fpdfapi/fpdf_parser/include')
-rw-r--r-- | core/fpdfapi/fpdf_parser/include/cpdf_document.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/fpdfapi/fpdf_parser/include/cpdf_document.h b/core/fpdfapi/fpdf_parser/include/cpdf_document.h index 494868ef13..0b865cb7f2 100644 --- a/core/fpdfapi/fpdf_parser/include/cpdf_document.h +++ b/core/fpdfapi/fpdf_parser/include/cpdf_document.h @@ -7,6 +7,7 @@ #ifndef CORE_FPDFAPI_FPDF_PARSER_INCLUDE_CPDF_DOCUMENT_H_ #define CORE_FPDFAPI_FPDF_PARSER_INCLUDE_CPDF_DOCUMENT_H_ +#include <functional> #include <memory> #include "core/fpdfapi/fpdf_parser/include/cpdf_indirect_object_holder.h" @@ -128,6 +129,12 @@ class CPDF_Document : public CPDF_IndirectObjectHolder { void LoadDocInternal(); size_t CalculateEncodingDict(int charset, CPDF_Dictionary* pBaseDict); CPDF_Dictionary* GetPagesDict() const; + CPDF_Dictionary* ProcessbCJK( + CPDF_Dictionary* pBaseDict, + int charset, + FX_BOOL bVert, + CFX_ByteString basefont, + std::function<void(FX_WCHAR, FX_WCHAR, CPDF_Array*)> Insert); }; #endif // CORE_FPDFAPI_FPDF_PARSER_INCLUDE_CPDF_DOCUMENT_H_ |