diff options
author | Nicolas Pena <npm@chromium.org> | 2016-11-30 13:10:14 -0500 |
---|---|---|
committer | Nicolás Peña <npm@chromium.org> | 2016-11-30 18:11:36 +0000 |
commit | 47718fbaf24000877aff58d9512b9b1dea0af818 (patch) | |
tree | 28caae0e5d5915e3661c11c254d9182ffcd79a59 /core/fpdfapi/font/cpdf_cidfont.h | |
parent | b90c71a7b8530c5bd15740d0bb680f097920cd65 (diff) | |
download | pdfium-47718fbaf24000877aff58d9512b9b1dea0af818.tar.xz |
Remove unused methods from CPDF_Font
Removed unused methods, and GetCharSize no longer overrides.
Change-Id: I29384afb4d79cfd8e8b4ede4a0b52272020bfcd9
Reviewed-on: https://pdfium-review.googlesource.com/2031
Reviewed-by: ooo 11-24 -- 12-05 (dsinclair) <dsinclair@chromium.org>
Diffstat (limited to 'core/fpdfapi/font/cpdf_cidfont.h')
-rw-r--r-- | core/fpdfapi/font/cpdf_cidfont.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fpdfapi/font/cpdf_cidfont.h b/core/fpdfapi/font/cpdf_cidfont.h index 0a6b3e7871..a2d16ed14c 100644 --- a/core/fpdfapi/font/cpdf_cidfont.h +++ b/core/fpdfapi/font/cpdf_cidfont.h @@ -48,7 +48,6 @@ class CPDF_CIDFont : public CPDF_Font { int& offset) const override; int CountChar(const FX_CHAR* pString, int size) const override; int AppendChar(FX_CHAR* str, uint32_t charcode) const override; - int GetCharSize(uint32_t charcode) const override; bool IsVertWriting() const override; bool IsUnicodeCompatible() const override; bool Load() override; @@ -59,6 +58,7 @@ class CPDF_CIDFont : public CPDF_Font { const uint8_t* GetCIDTransform(uint16_t CID) const; short GetVertWidth(uint16_t CID) const; void GetVertOrigin(uint16_t CID, short& vx, short& vy) const; + int GetCharSize(uint32_t charcode) const; protected: void LoadGB2312(); |