diff options
author | 2024-04-18 17:05:06 +0000 | |
---|---|---|
committer | 2024-04-18 17:05:06 +0000 | |
commit | c7dba2b5dea5e7654c6a279189790564d9d45f16 (patch) | |
tree | d3399abb2cab6fb65bb4695a4cd39990f0e03625 /packages/CredentialManager/src | |
parent | a03d712c96760319f69bd62570731323f8a302c3 (diff) |
Revert^2 "Propagate exception from inline/dropdown selections"
This reverts commit a03d712c96760319f69bd62570731323f8a302c3.
Reason for revert: Landing the original change
Change-Id: I5858d2e181aa864395a209ade610791f9c867157
Diffstat (limited to 'packages/CredentialManager/src')
-rw-r--r-- | packages/CredentialManager/src/com/android/credentialmanager/autofill/CredentialAutofillService.kt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/CredentialManager/src/com/android/credentialmanager/autofill/CredentialAutofillService.kt b/packages/CredentialManager/src/com/android/credentialmanager/autofill/CredentialAutofillService.kt index 4109079e20a5..50ebdd5e3ce7 100644 --- a/packages/CredentialManager/src/com/android/credentialmanager/autofill/CredentialAutofillService.kt +++ b/packages/CredentialManager/src/com/android/credentialmanager/autofill/CredentialAutofillService.kt @@ -47,9 +47,9 @@ import android.service.autofill.SaveRequest import android.service.credentials.CredentialProviderService import android.util.Log import android.content.Intent +import android.os.IBinder import android.view.autofill.AutofillId import android.view.autofill.AutofillManager -import android.view.autofill.IAutoFillManagerClient import android.widget.RemoteViews import android.widget.inline.InlinePresentationSpec import androidx.autofill.inline.v1.InlineSuggestionUi @@ -95,7 +95,7 @@ class CredentialAutofillService : AutofillService() { request: FillRequest, cancellationSignal: CancellationSignal, callback: FillCallback, - autofillCallback: IAutoFillManagerClient + autofillCallback: IBinder ) { val context = request.fillContexts val structure = context[context.size - 1].structure @@ -160,7 +160,7 @@ class CredentialAutofillService : AutofillService() { CancellationSignal(), Executors.newSingleThreadExecutor(), outcome, - autofillCallback.asBinder() + autofillCallback ) } |