diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-02-21 17:21:08 -0500 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-02-22 01:32:00 +0000 |
commit | 60fd9fc63744419a760201af596515d411b7e194 (patch) | |
tree | 8e4d8f3b2571bf0061af977f005bd65199fa0043 /fpdfsdk/cpdfsdk_formfillenvironment.h | |
parent | 6eec1c45c9c6e0812950d55ae88340cf41bc243a (diff) | |
download | pdfium-60fd9fc63744419a760201af596515d411b7e194.tar.xz |
Convert OutputSelectedRect to take a rect
This updates the CPDFSDK_FormFillEnvironment::OutputSelectedRect to match to
CFX_SystemHandler::OutputSelectedRect method.
Change-Id: Ia07c408533a4423cf81095c5467c9ee82a25988c
Reviewed-on: https://pdfium-review.googlesource.com/2815
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fpdfsdk/cpdfsdk_formfillenvironment.h')
-rw-r--r-- | fpdfsdk/cpdfsdk_formfillenvironment.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/fpdfsdk/cpdfsdk_formfillenvironment.h b/fpdfsdk/cpdfsdk_formfillenvironment.h index b180e98104..eead8734f1 100644 --- a/fpdfsdk/cpdfsdk_formfillenvironment.h +++ b/fpdfsdk/cpdfsdk_formfillenvironment.h @@ -69,11 +69,7 @@ class CPDFSDK_FormFillEnvironment bool ProcOpenAction(); void Invalidate(FPDF_PAGE page, const FX_RECT& rect); - void OutputSelectedRect(FPDF_PAGE page, - double left, - double top, - double right, - double bottom); + void OutputSelectedRect(FPDF_PAGE page, const CFX_FloatRect& rect); void SetCursor(int nCursorType); int SetTimer(int uElapse, TimerCallback lpTimerFunc); |