Commit 824eac1a authored by Ian Vollick's avatar Ian Vollick Committed by Commit Bot

Remove unused modal dialog property

FILTER_TOUCH_FOR_SECURITY is not used by the touchless modal
dialog presenter and need not be included in touchless
modal dialog properties.

Bug: None
Change-Id: I6bb9faea0b095dc5fef36f85c7c6b0b09b11e838
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1675688Reviewed-by: default avatarTheresa <twellington@chromium.org>
Commit-Queue: Ian Vollick <vollick@chromium.org>
Cr-Commit-Position: refs/heads/master@{#672097}
parent 6ea2d57c
......@@ -75,7 +75,6 @@ public abstract class JavascriptModalDialog implements ModalDialogProperties.Con
.with(ModalDialogProperties.TITLE, mTitle)
.with(ModalDialogProperties.CUSTOM_VIEW, mDialogCustomView)
.with(ModalDialogProperties.CONTROLLER, this)
.with(ModalDialogProperties.FILTER_TOUCH_FOR_SECURITY, true)
.with(ModalDialogProperties.CONTENT_DESCRIPTION, mMessage)
.build();
mDialogModel.set(TouchlessDialogProperties.ALT_ACTION,
......
......@@ -50,7 +50,6 @@ public class TouchlessPermissionDialogModel {
.with(ModalDialogProperties.TITLE, delegate.getTitleText())
.with(ModalDialogProperties.TITLE_ICON, icon)
.with(ModalDialogProperties.CONTROLLER, controller)
.with(ModalDialogProperties.FILTER_TOUCH_FOR_SECURITY, true)
.with(ModalDialogProperties.CONTENT_DESCRIPTION, delegate.getMessageText())
.build();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment