summaryrefslogtreecommitdiff
path: root/core/src/fpdfapi/fpdf_font/font_int.h
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2015-11-02 13:27:57 -0500
committerDan Sinclair <dsinclair@chromium.org>2015-11-02 13:27:57 -0500
commit52b0b525dca3d982a04b77fa6d0913aff1e5fd9c (patch)
tree4b22704e8eb802dc0503d1c4bd4183a828a1edbe /core/src/fpdfapi/fpdf_font/font_int.h
parent71fca3fffc40f63b28c0085add17ac73b5a066ef (diff)
downloadpdfium-52b0b525dca3d982a04b77fa6d0913aff1e5fd9c.tar.xz
Add test for StringToCode and StringToWideString
This CL adds a test case for the StringToCode and StringToWideString methods in fpdf_font.cpp. In order to do so, it moves the methods to be private methods of CPDF_ToUnicodeMap and make the tests friends of the class. R=tsepez@chromium.org Review URL: https://codereview.chromium.org/1428593005 .
Diffstat (limited to 'core/src/fpdfapi/fpdf_font/font_int.h')
-rw-r--r--core/src/fpdfapi/fpdf_font/font_int.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/core/src/fpdfapi/fpdf_font/font_int.h b/core/src/fpdfapi/fpdf_font/font_int.h
index 48e58d6345..559027b283 100644
--- a/core/src/fpdfapi/fpdf_font/font_int.h
+++ b/core/src/fpdfapi/fpdf_font/font_int.h
@@ -174,6 +174,13 @@ class CPDF_ToUnicodeMap {
std::map<FX_DWORD, FX_DWORD> m_Map;
CPDF_CID2UnicodeMap* m_pBaseMap;
CFX_WideTextBuf m_MultiCharBuf;
+
+ private:
+ friend class fpdf_font_StringToCode_Test;
+ friend class fpdf_font_StringToWideString_Test;
+
+ static FX_DWORD StringToCode(const CFX_ByteStringC& str);
+ static CFX_WideString StringToWideString(const CFX_ByteStringC& str);
};
class CPDF_FontCharMap : public CFX_CharMap {
public: