Merge "Try augmented autofill if regular autofill is disabled." into qt-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
e33ff60894
@@ -569,12 +569,13 @@ final class Session implements RemoteFillService.FillServiceCallbacks, ViewState
|
||||
@GuardedBy("mLock")
|
||||
private void requestNewFillResponseLocked(@NonNull ViewState viewState, int newState,
|
||||
int flags) {
|
||||
if (mForAugmentedAutofillOnly) {
|
||||
if (mForAugmentedAutofillOnly || mRemoteFillService == null) {
|
||||
if (sVerbose) {
|
||||
Slog.v(TAG, "requestNewFillResponse(): triggering augmented autofill instead "
|
||||
+ "(mForAugmentedAutofillOnly=" + mForAugmentedAutofillOnly
|
||||
+ ", flags=" + flags + ")");
|
||||
}
|
||||
mForAugmentedAutofillOnly = true;
|
||||
triggerAugmentedAutofillLocked();
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user