diff options
author | npm <npm@chromium.org> | 2016-08-24 06:33:56 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-08-24 06:33:56 -0700 |
commit | 63af2c64b4ea9a0de9a9b4e9916b7f2c925e4b38 (patch) | |
tree | a4a2392156e75757cb1c4a9982116bbd2ee5cf24 /core/fpdfapi/fpdf_render | |
parent | a470b5e5371d0674d06068ec38d0d3c3279e85e1 (diff) | |
download | pdfium-63af2c64b4ea9a0de9a9b4e9916b7f2c925e4b38.tar.xz |
Delete unused methods from CFX_RenderDevice
Review-Url: https://codereview.chromium.org/2269203002
Diffstat (limited to 'core/fpdfapi/fpdf_render')
-rw-r--r-- | core/fpdfapi/fpdf_render/fpdf_render_text.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/fpdfapi/fpdf_render/fpdf_render_text.cpp b/core/fpdfapi/fpdf_render/fpdf_render_text.cpp index 080a7578a7..641d0b4705 100644 --- a/core/fpdfapi/fpdf_render/fpdf_render_text.cpp +++ b/core/fpdfapi/fpdf_render/fpdf_render_text.cpp @@ -629,10 +629,10 @@ FX_BOOL CPDF_TextRenderer::DrawTextPath(CFX_RenderDevice* pDevice, : nullptr; CPDF_CharPosList CharPosList; CharPosList.Load(nChars, pCharCodes, pCharPos, pFont, font_size); - return pDevice->DrawTextPathWithFlags( - CharPosList.m_nChars, CharPosList.m_pCharPos, &pFont->m_Font, pCache, - font_size, pText2User, pUser2Device, pGraphState, fill_argb, stroke_argb, - pClippingPath, nFlag); + return pDevice->DrawTextPath(CharPosList.m_nChars, CharPosList.m_pCharPos, + &pFont->m_Font, pCache, font_size, pText2User, + pUser2Device, pGraphState, fill_argb, + stroke_argb, pClippingPath, nFlag); } // static |