Loading core/java/android/view/inputmethod/InputMethodManager.java +0 −4 Original line number Diff line number Diff line Loading @@ -636,10 +636,6 @@ public final class InputMethodManager { } } @Override public void setUsingInputMethod(boolean state) { } @Override public void onBindMethod(InputBindResult res) { mH.obtainMessage(MSG_BIND, res).sendToTarget(); Loading core/java/com/android/internal/view/IInputMethodClient.aidl +0 −1 Original line number Diff line number Diff line Loading @@ -23,7 +23,6 @@ import com.android.internal.view.InputBindResult; * itself and receive information about changes to the global manager state. */ oneway interface IInputMethodClient { void setUsingInputMethod(boolean state); void onBindMethod(in InputBindResult res); // unbindReason corresponds to InputMethodClient.UnbindReason. void onUnbindMethod(int sequence, int unbindReason); Loading services/core/java/com/android/server/wm/Session.java +1 −4 Original line number Diff line number Diff line Loading @@ -138,10 +138,7 @@ class Session extends IWindowSession.Stub implements IBinder.DeathRecipient { // Note: it is safe to call in to the input method manager // here because we are not holding our lock. if (mService.mInputMethodManager != null) { mService.mInputMethodManager.addClient(client, inputContext, mUid, mPid); } else { client.setUsingInputMethod(false); mService.mInputMethodManager.addClient(client, inputContext, mUid, mPid); } client.asBinder().linkToDeath(this, 0); } catch (RemoteException e) { Loading Loading
core/java/android/view/inputmethod/InputMethodManager.java +0 −4 Original line number Diff line number Diff line Loading @@ -636,10 +636,6 @@ public final class InputMethodManager { } } @Override public void setUsingInputMethod(boolean state) { } @Override public void onBindMethod(InputBindResult res) { mH.obtainMessage(MSG_BIND, res).sendToTarget(); Loading
core/java/com/android/internal/view/IInputMethodClient.aidl +0 −1 Original line number Diff line number Diff line Loading @@ -23,7 +23,6 @@ import com.android.internal.view.InputBindResult; * itself and receive information about changes to the global manager state. */ oneway interface IInputMethodClient { void setUsingInputMethod(boolean state); void onBindMethod(in InputBindResult res); // unbindReason corresponds to InputMethodClient.UnbindReason. void onUnbindMethod(int sequence, int unbindReason); Loading
services/core/java/com/android/server/wm/Session.java +1 −4 Original line number Diff line number Diff line Loading @@ -138,10 +138,7 @@ class Session extends IWindowSession.Stub implements IBinder.DeathRecipient { // Note: it is safe to call in to the input method manager // here because we are not holding our lock. if (mService.mInputMethodManager != null) { mService.mInputMethodManager.addClient(client, inputContext, mUid, mPid); } else { client.setUsingInputMethod(false); mService.mInputMethodManager.addClient(client, inputContext, mUid, mPid); } client.asBinder().linkToDeath(this, 0); } catch (RemoteException e) { Loading