diff options
Diffstat (limited to 'testing/embedder_test.h')
-rw-r--r-- | testing/embedder_test.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/testing/embedder_test.h b/testing/embedder_test.h index b127eadbde..48ea415e19 100644 --- a/testing/embedder_test.h +++ b/testing/embedder_test.h @@ -14,6 +14,8 @@ #include "testing/gtest/include/gtest/gtest.h" #include "v8/include/v8.h" +class TestLoader; + // This class is used to load a PDF document, and then run programatic // API tests against it. class EmbedderTest : public ::testing::Test { @@ -21,6 +23,7 @@ class EmbedderTest : public ::testing::Test { EmbedderTest() : document_(nullptr), avail_(nullptr), + loader_(nullptr), file_length_(0), file_contents_(nullptr) { memset(&hints_, 0, sizeof(hints_)); @@ -70,6 +73,7 @@ class EmbedderTest : public ::testing::Test { FX_FILEAVAIL file_avail_; v8::StartupData natives_; v8::StartupData snapshot_; + TestLoader* loader_; size_t file_length_; char* file_contents_; }; |