summaryrefslogtreecommitdiff
path: root/testing/embedder_test.h
diff options
context:
space:
mode:
Diffstat (limited to 'testing/embedder_test.h')
-rw-r--r--testing/embedder_test.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/testing/embedder_test.h b/testing/embedder_test.h
index 8156dd2353..e8f76c058f 100644
--- a/testing/embedder_test.h
+++ b/testing/embedder_test.h
@@ -5,6 +5,7 @@
#ifndef TESTING_EMBEDDER_TEST_H_
#define TESTING_EMBEDDER_TEST_H_
+#include <fstream>
#include <map>
#include <memory>
#include <string>
@@ -204,6 +205,9 @@ class EmbedderTest : public ::testing::Test,
void SetWholeFileAvailable();
+ void OpenPDFFileForWrite(const char* filename);
+ void ClosePDFFileForWrite();
+
std::unique_ptr<Delegate> default_delegate_;
Delegate* delegate_;
@@ -256,6 +260,7 @@ class EmbedderTest : public ::testing::Test,
int GetPageNumberForSavedPage(FPDF_PAGE page) const;
std::string data_string_;
+ std::ofstream filestream_;
};
#endif // TESTING_EMBEDDER_TEST_H_