From 8cadf995e9a0fec8da19f69edac9d10fccca7eed Mon Sep 17 00:00:00 2001 From: Lei Zhang Date: Wed, 4 Nov 2015 14:40:02 -0800 Subject: Make JS app.setTimeOut() work again. This regressed in commit 794c9b6. BUG=551248 R=tsepez@chromium.org Review URL: https://codereview.chromium.org/1424743006 . --- samples/pdfium_test.cc | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) (limited to 'samples') diff --git a/samples/pdfium_test.cc b/samples/pdfium_test.cc index 571bfcd3e6..102f59d917 100644 --- a/samples/pdfium_test.cc +++ b/samples/pdfium_test.cc @@ -196,19 +196,8 @@ void WriteEmf(FPDF_PAGE page, const char* pdf_name, int num) { int ExampleAppAlert(IPDF_JSPLATFORM*, FPDF_WIDESTRING msg, FPDF_WIDESTRING, int, int) { - // Deal with differences between UTF16LE and wchar_t on this platform. - size_t characters = 0; - while (msg[characters]) { - ++characters; - } - wchar_t* platform_string = - static_cast(malloc((characters + 1) * sizeof(wchar_t))); - for (size_t i = 0; i < characters + 1; ++i) { - unsigned char* ptr = (unsigned char*)&msg[i]; - platform_string[i] = ptr[0] + 256 * ptr[1]; - } - printf("Alert: %ls\n", platform_string); - free(platform_string); + std::wstring platform_string = GetWideString(msg); + printf("Alert: %ls\n", platform_string.c_str()); return 0; } -- cgit v1.2.3