Merge "Remove unused InputMethod#setCurrentShowInputToken()"

This commit is contained in:
Yohei Yukawa
2022-02-15 16:29:23 +00:00
committed by Android (Google) Code Review
2 changed files with 0 additions and 17 deletions

View File

@@ -989,15 +989,6 @@ public class InputMethodService extends AbstractInputMethodService {
public void changeInputMethodSubtype(InputMethodSubtype subtype) {
dispatchOnCurrentInputMethodSubtypeChanged(subtype);
}
/**
* {@inheritDoc}
* @hide
*/
@Override
public void setCurrentShowInputToken(IBinder showInputToken) {
mCurShowInputToken = showInputToken;
}
}
/**

View File

@@ -390,14 +390,6 @@ public interface InputMethod {
@MainThread
public void changeInputMethodSubtype(InputMethodSubtype subtype);
/**
* Update token of the client window requesting {@link #showSoftInput(int, ResultReceiver)}
* @param showInputToken placeholder app window token for window requesting
* {@link InputMethodManager#showSoftInput(View, int)}
* @hide
*/
public void setCurrentShowInputToken(IBinder showInputToken);
/**
* Checks if IME is ready to start stylus handwriting session.
* If yes, {@link #startStylusHandwriting(InputChannel, List)} is called.