Merge "Fix AutofillManager and Session status not sync with fill dialog" into tm-dev

This commit is contained in:
Ahaan Ugale
2022-05-07 00:21:59 +00:00
committed by Android (Google) Code Review

View File

@@ -3225,10 +3225,15 @@ final class Session implements RemoteFillService.FillServiceCallbacks, ViewState
currentView.setState(ViewState.STATE_FILL_DIALOG_SHOWN); currentView.setState(ViewState.STATE_FILL_DIALOG_SHOWN);
mService.logDatasetShown(id, mClientState, UI_TYPE_DIALOG); mService.logDatasetShown(id, mClientState, UI_TYPE_DIALOG);
} }
// Just show fill dialog once, so disabled after shown.
// Note: Cannot disable before requestShowFillDialog() because the method
// need to check whether fill dialog enabled.
setFillDialogDisabled();
return; return;
} else { } else {
setFillDialogDisabled(); setFillDialogDisabled();
} }
} }
if (response.supportsInlineSuggestions()) { if (response.supportsInlineSuggestions()) {