summaryrefslogtreecommitdiff
path: root/samples
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2015-11-04 14:40:02 -0800
committerLei Zhang <thestig@chromium.org>2015-11-04 14:40:02 -0800
commit8cadf995e9a0fec8da19f69edac9d10fccca7eed (patch)
treef9243907b097b72099dedbcb1b2a011911a4fcf6 /samples
parent9e48432750f7d86a43c3d10f47a057f8360f7619 (diff)
downloadpdfium-8cadf995e9a0fec8da19f69edac9d10fccca7eed.tar.xz
Make JS app.setTimeOut() work again.
This regressed in commit 794c9b6. BUG=551248 R=tsepez@chromium.org Review URL: https://codereview.chromium.org/1424743006 .
Diffstat (limited to 'samples')
-rw-r--r--samples/pdfium_test.cc15
1 files changed, 2 insertions, 13 deletions
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<wchar_t*>(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;
}