0

Roll src/third_party/pdfium/ f280a12ee..a793e97ab (1 commit)

https://pdfium.googlesource.com/pdfium.git/+log/f280a12eea4c..a793e97ab5e1

Manually roll so we can initialize a new field in FPDF_FORMFILLINFO at
the same time.

Created with:
  roll-dep src/third_party/pdfium

TBR=dhoss@chromium.org

Change-Id: I53c25e64799239f521759348929b559516a1c091
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2018388
Reviewed-by: Lei Zhang <thestig@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Cr-Commit-Position: refs/heads/master@{#734849}
This commit is contained in:
Lei Zhang
2020-01-24 08:11:47 +00:00
committed by Commit Bot
parent b8cd839b20
commit 3309fbbbd3
2 changed files with 2 additions and 1 deletions

2
DEPS

@ -201,7 +201,7 @@ vars = {
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling PDFium
# and whatever else without interference from each other.
'pdfium_revision': 'f280a12eea4ce3c45fa03d0c3913b391e0badc44',
'pdfium_revision': 'a793e97ab5e1b336096368615e54ebef5ddfcc93',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling BoringSSL
# and whatever else without interference from each other.

@ -47,6 +47,7 @@ PDFiumFormFiller::PDFiumFormFiller(PDFiumEngine* engine, bool enable_javascript)
FPDF_FORMFILLINFO::FFI_DoGoToAction = Form_DoGoToAction;
#if defined(PDF_ENABLE_XFA)
FPDF_FORMFILLINFO::version = 2;
FPDF_FORMFILLINFO::xfa_disabled = false;
FPDF_FORMFILLINFO::FFI_EmailTo = Form_EmailTo;
FPDF_FORMFILLINFO::FFI_DisplayCaret = Form_DisplayCaret;
FPDF_FORMFILLINFO::FFI_SetCurrentPage = Form_SetCurrentPage;