OLD | NEW |
1 // Copyright 2015 PDFium Authors. All rights reserved. | 1 // Copyright 2015 PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef TESTING_EMBEDDER_TEST_SUPPORT_H_ | 5 #ifndef TESTING_EMBEDDER_TEST_SUPPORT_H_ |
6 #define TESTING_EMBEDDER_TEST_SUPPORT_H_ | 6 #define TESTING_EMBEDDER_TEST_SUPPORT_H_ |
7 | 7 |
8 #include <stdlib.h> | 8 #include <stdlib.h> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "public/fpdfview.h" | 11 #include "public/fpdfview.h" |
12 | 12 |
13 #ifdef PDF_ENABLE_V8 | 13 #ifdef PDF_ENABLE_V8 |
14 #include "v8/include/v8.h" | 14 #include "v8/include/v8.h" |
15 #endif // PDF_ENABLE_V8 | 15 #endif // PDF_ENABLE_V8 |
16 | 16 |
17 // Reads the entire contents of a file into a newly malloc'd buffer. | 17 // Reads the entire contents of a file into a newly malloc'd buffer. |
18 char* GetFileContents(const char* filename, size_t* retlen); | 18 char* GetFileContents(const char* filename, size_t* retlen); |
19 | 19 |
20 // Converts a FPDF_WIDESTRING to a std::wstring. | 20 // Converts a FPDF_WIDESTRING to a std::wstring. |
21 // Deals with differences between UTF16LE and wchar_t. | 21 // Deals with differences between UTF16LE and wchar_t. |
22 std::wstring GetWideString(FPDF_WIDESTRING wstr); | 22 std::wstring GetPlatformWString(const FPDF_WIDESTRING wstr); |
| 23 |
| 24 // Returns a newly mallocated FPDF_WIDESTRING (caller must free()). |
| 25 // Deals with differences between UTF16LE and wchar_t. |
| 26 FPDF_WIDESTRING GetFPDFWideString(const std::wstring& wstr); |
23 | 27 |
24 #ifdef PDF_ENABLE_V8 | 28 #ifdef PDF_ENABLE_V8 |
25 #ifdef V8_USE_EXTERNAL_STARTUP_DATA | 29 #ifdef V8_USE_EXTERNAL_STARTUP_DATA |
26 bool InitializeV8ForPDFium(const std::string& exe_path, | 30 bool InitializeV8ForPDFium(const std::string& exe_path, |
27 const std::string& bin_dir, | 31 const std::string& bin_dir, |
28 v8::StartupData* natives_blob, | 32 v8::StartupData* natives_blob, |
29 v8::StartupData* snapshot_blob, | 33 v8::StartupData* snapshot_blob, |
30 v8::Platform** platform); | 34 v8::Platform** platform); |
31 #else // V8_USE_EXTERNAL_STARTUP_DATA | 35 #else // V8_USE_EXTERNAL_STARTUP_DATA |
32 bool InitializeV8ForPDFium(v8::Platform** platform); | 36 bool InitializeV8ForPDFium(v8::Platform** platform); |
33 #endif // V8_USE_EXTERNAL_STARTUP_DATA | 37 #endif // V8_USE_EXTERNAL_STARTUP_DATA |
34 #endif // PDF_ENABLE_V8 | 38 #endif // PDF_ENABLE_V8 |
35 | 39 |
36 class TestLoader { | 40 class TestLoader { |
37 public: | 41 public: |
38 TestLoader(const char* pBuf, size_t len); | 42 TestLoader(const char* pBuf, size_t len); |
39 static int GetBlock(void* param, | 43 static int GetBlock(void* param, |
40 unsigned long pos, | 44 unsigned long pos, |
41 unsigned char* pBuf, | 45 unsigned char* pBuf, |
42 unsigned long size); | 46 unsigned long size); |
43 | 47 |
44 private: | 48 private: |
45 const char* const m_pBuf; | 49 const char* const m_pBuf; |
46 const size_t m_Len; | 50 const size_t m_Len; |
47 }; | 51 }; |
48 | 52 |
49 #endif // TESTING_EMBEDDER_TEST_SUPPORT_H_ | 53 #endif // TESTING_EMBEDDER_TEST_SUPPORT_H_ |
OLD | NEW |