diff options
author | Tom Sepez <tsepez@chromium.org> | 2016-01-05 10:06:09 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2016-01-05 10:06:09 -0800 |
commit | ed34cdf99d5a4b33e57f81f9244a311f6fb86db3 (patch) | |
tree | ee5c9711c68cb3971ce058400a6f777324873e60 /testing/test_support.h | |
parent | 5dac8047f02c937a5a3546a8cc5b352db2188d97 (diff) | |
download | pdfium-ed34cdf99d5a4b33e57f81f9244a311f6fb86db3.tar.xz |
Make FPDF_WIDESTRING work regardless of endianness.
Given the helper routines, use it in the find bookmark test
instead of just trusting another bookmarks title.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1554363002 .
Diffstat (limited to 'testing/test_support.h')
-rw-r--r-- | testing/test_support.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/testing/test_support.h b/testing/test_support.h index a2241144a4..d48d5596f4 100644 --- a/testing/test_support.h +++ b/testing/test_support.h @@ -19,7 +19,11 @@ char* GetFileContents(const char* filename, size_t* retlen); // Converts a FPDF_WIDESTRING to a std::wstring. // Deals with differences between UTF16LE and wchar_t. -std::wstring GetWideString(FPDF_WIDESTRING wstr); +std::wstring GetPlatformWString(const FPDF_WIDESTRING wstr); + +// Returns a newly mallocated FPDF_WIDESTRING (caller must free()). +// Deals with differences between UTF16LE and wchar_t. +FPDF_WIDESTRING GetFPDFWideString(const std::wstring& wstr); #ifdef PDF_ENABLE_V8 #ifdef V8_USE_EXTERNAL_STARTUP_DATA |