diff options
author | thestig <thestig@chromium.org> | 2016-05-23 15:06:59 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-05-23 15:06:59 -0700 |
commit | 27ddf161579f79510b361d0016ccc7f0cdffdc6d (patch) | |
tree | bc5a13661d288faeccc8471275059a9d5e8795bc /testing/embedder_test.cpp | |
parent | 490d6128e6faef423fa6f965f792513e138bc04a (diff) | |
download | pdfium-27ddf161579f79510b361d0016ccc7f0cdffdc6d.tar.xz |
Distinguish between user and owner passwords.
BUG=pdfium:496
Review-Url: https://codereview.chromium.org/2005653002
Diffstat (limited to 'testing/embedder_test.cpp')
-rw-r--r-- | testing/embedder_test.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testing/embedder_test.cpp b/testing/embedder_test.cpp index 38a3dcdeca..033313dbe2 100644 --- a/testing/embedder_test.cpp +++ b/testing/embedder_test.cpp @@ -111,6 +111,7 @@ bool EmbedderTest::CreateEmptyDocument() { } bool EmbedderTest::OpenDocument(const std::string& filename, + const char* password, bool must_linearize) { std::string file_path; if (!PathService::GetTestFilePath(filename, &file_path)) @@ -133,7 +134,7 @@ bool EmbedderTest::OpenDocument(const std::string& filename, avail_ = FPDFAvail_Create(&file_avail_, &file_access_); if (FPDFAvail_IsLinearized(avail_) == PDF_LINEARIZED) { - document_ = FPDFAvail_GetDocument(avail_, nullptr); + document_ = FPDFAvail_GetDocument(avail_, password); if (!document_) { return false; } |