diff options
author | Lei Zhang <thestig@chromium.org> | 2015-06-10 11:47:08 -0700 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-06-10 11:47:08 -0700 |
commit | 35c3163d55bebea8095474181f807ddfb2f4f806 (patch) | |
tree | 1abf9c44f45ac844214b01dfd090c50c1027a4ec /fpdfsdk/src/fsdk_actionhandler.cpp | |
parent | 22f429fc4875027b10ab071102c9ac8a88abf825 (diff) | |
download | pdfium-35c3163d55bebea8095474181f807ddfb2f4f806.tar.xz |
Cleanup: Remove CFFL_IFormFiller::GetCommitKey() that always returns 0.
Remove callers and related code that all just pass zeros around.
Also remove CFFL_IFormFiller::GetKeyDown().
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1149623012.
Diffstat (limited to 'fpdfsdk/src/fsdk_actionhandler.cpp')
-rw-r--r-- | fpdfsdk/src/fsdk_actionhandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/src/fsdk_actionhandler.cpp b/fpdfsdk/src/fsdk_actionhandler.cpp index d4b2204f6c..1f61a8c797 100644 --- a/fpdfsdk/src/fsdk_actionhandler.cpp +++ b/fpdfsdk/src/fsdk_actionhandler.cpp @@ -653,7 +653,7 @@ void CPDFSDK_ActionHandler::RunFieldJavaScript(CPDFSDK_Document* pDocument, CPDF pContext->OnField_Blur(data.bModifier, data.bShift, pFormField, data.sValue); break; case CPDF_AAction::KeyStroke: - pContext->OnField_Keystroke(data.nCommitKey, data.sChange, data.sChangeEx, data.bKeyDown, + pContext->OnField_Keystroke(data.sChange, data.sChangeEx, data.bKeyDown, data.bModifier, data.nSelEnd, data.nSelStart, data.bShift, pFormField, data.sValue, data.bWillCommit, data.bFieldFull, data.bRC); break; |