summaryrefslogtreecommitdiff
path: root/builtInServices/src_imms/com/android/server/inputmethod/AutofillController.java
diff options
context:
space:
mode:
Diffstat (limited to 'builtInServices/src_imms/com/android/server/inputmethod/AutofillController.java')
-rw-r--r--builtInServices/src_imms/com/android/server/inputmethod/AutofillController.java48
1 files changed, 0 insertions, 48 deletions
diff --git a/builtInServices/src_imms/com/android/server/inputmethod/AutofillController.java b/builtInServices/src_imms/com/android/server/inputmethod/AutofillController.java
deleted file mode 100644
index 83ecd3e..0000000
--- a/builtInServices/src_imms/com/android/server/inputmethod/AutofillController.java
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * Copyright (C) 2023 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package com.android.server.inputmethod;
-
-import android.annotation.UserIdInt;
-
-import com.android.internal.inputmethod.IInlineSuggestionsRequestCallback;
-import com.android.internal.inputmethod.InlineSuggestionsRequestInfo;
-
-/**
- * Interface for Android Auto autofill controllers.
- */
-public interface AutofillController {
-
- /**
- * Fill the autofill suggestion request passed as argument. Starts an autofill Session with the
- * current IME.
- */
- void onCreateInlineSuggestionsRequest(@UserIdInt int userId,
- InlineSuggestionsRequestInfo requestInfo, IInlineSuggestionsRequestCallback callback,
- boolean touchExplorationEnabled);
-
- /**
- * Send the autofill suggestions request. The callback passed in
- * {@link #onCreateInlineSuggestionsRequest} will be invoked with retrieved suggestions.
- */
- void performOnCreateInlineSuggestionsRequest();
-
- /**
- * Closes the autofill session with IME.
- */
- void invalidateAutofillSession();
-}
-