0

Roll src/third_party/pdfium/ 83a2cd097..e6fcdfa5b (1 commit)

https://pdfium.googlesource.com/pdfium.git/+log/83a2cd097544..e6fcdfa5bb6e

Update caller to the modified public API.

TBR=tsepez@chromium.org

Change-Id: I214a7e5b605fb76fe07e40862ca7e3bd99ac896a
Reviewed-on: https://chromium-review.googlesource.com/c/1472030
Reviewed-by: Lei Zhang <thestig@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Cr-Commit-Position: refs/heads/master@{#632095}
This commit is contained in:
Lei Zhang
2019-02-14 05:30:15 +00:00
committed by Commit Bot
parent dad30a4f84
commit a86d1d1dbe
2 changed files with 2 additions and 2 deletions

2
DEPS

@ -146,7 +146,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': '83a2cd09754423f8007aa346b00aa02125ba61fd',
'pdfium_revision': 'e6fcdfa5bb6e1fca1bb833cbace54b754ca395a6',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling openmax_dl
# and whatever else without interference from each other.

@ -3620,7 +3620,7 @@ bool PDFiumEngine::IsPointInEditableFormTextArea(FPDF_PAGE page,
if (!annot)
return false;
int flags = FPDFAnnot_GetFormFieldFlags(page, annot.get());
int flags = FPDFAnnot_GetFormFieldFlags(form(), page, annot.get());
return CheckIfEditableFormTextArea(flags, form_type);
}