Skip to content

Commit

Permalink
Roll src/third_party/pdfium/ 7264bc930..a9d33bd8b (1 commit)
Browse files Browse the repository at this point in the history
https://pdfium.googlesource.com/pdfium.git/+log/7264bc930f9b..a9d33bd8b6ba

Adjust caller to FPDFAnnot_GetFormFieldFlags() in PDFiumEngine to stop
passing a useless parameter.

Created with:
  roll-dep src/third_party/pdfium

TBR=tsepez@chromium.org

Change-Id: I4f360ccacffe51007fa93e59f913410352ddc53d
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1728192
Reviewed-by: Lei Zhang <thestig@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Cr-Commit-Position: refs/heads/master@{#682615}
  • Loading branch information
leizleiz authored and Commit Bot committed Jul 31, 2019
1 parent a06fec3 commit 444cca7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DEPS
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,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': '7264bc930f9bd39168a2e7b2c15b2e2c0d54ab47',
'pdfium_revision': 'a9d33bd8b6ba01f26d2cf802241aba34dbac6d8a',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling BoringSSL
# and whatever else without interference from each other.
Expand Down
2 changes: 1 addition & 1 deletion pdf/pdfium/pdfium_engine.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3383,7 +3383,7 @@ bool PDFiumEngine::IsPointInEditableFormTextArea(FPDF_PAGE page,
if (!annot)
return false;

int flags = FPDFAnnot_GetFormFieldFlags(form(), page, annot.get());
int flags = FPDFAnnot_GetFormFieldFlags(form(), annot.get());
return CheckIfEditableFormTextArea(flags, form_type);
}

Expand Down

0 comments on commit 444cca7

Please sign in to comment.