diff options
author | Lei Zhang <thestig@chromium.org> | 2015-11-04 14:40:02 -0800 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-11-04 14:40:02 -0800 |
commit | 8cadf995e9a0fec8da19f69edac9d10fccca7eed (patch) | |
tree | f9243907b097b72099dedbcb1b2a011911a4fcf6 /testing/test_support.h | |
parent | 9e48432750f7d86a43c3d10f47a057f8360f7619 (diff) | |
download | pdfium-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 'testing/test_support.h')
-rw-r--r-- | testing/test_support.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/testing/test_support.h b/testing/test_support.h index 1018421ba7..4bb88db254 100644 --- a/testing/test_support.h +++ b/testing/test_support.h @@ -8,6 +8,8 @@ #include <stdlib.h> #include <string> +#include "../public/fpdfview.h" + #ifdef PDF_ENABLE_V8 #include "v8/include/libplatform/libplatform.h" #include "v8/include/v8.h" @@ -16,6 +18,10 @@ // Reads the entire contents of a file into a newly malloc'd buffer. 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); + #ifdef PDF_ENABLE_V8 #ifdef V8_USE_EXTERNAL_STARTUP_DATA bool InitializeV8ForPDFium(const std::string& exe_path, |