Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c428d474 authored by Yohei Yukawa's avatar Yohei Yukawa
Browse files

Fix build breakage in BridgeIInputMethodManager.

This is a follow up CL for 35d3f37b [1],
which changed some method signatures of IInputMethodManager.

  [1]: Ia1fe120af7d71495c5f3a4fc0ec6390efb8240ca

We need to update BridgeIInputMethodManager.java every time when we
change IInputMethodManager.

Bug: 25373872
Change-Id: I126dc4234f921039a9d29010ea411a0a7d2ef6c6
parent befb4d7c
Loading
Loading
Loading
Loading
+9 −5
Original line number Diff line number Diff line
@@ -184,8 +184,10 @@ public class BridgeIInputMethodManager implements IInputMethodManager {
    }

    @Override
    public InputBindResult startInput(IInputMethodClient client, IInputContext inputContext,
            EditorInfo attribute, int controlFlags) throws RemoteException {
    public InputBindResult startInput(
            /* @InputMethodClient.StartInputReason */ int startInputReason,
            IInputMethodClient client, IInputContext inputContext, EditorInfo attribute,
            int controlFlags) throws RemoteException {
        // TODO Auto-generated method stub
        return null;
    }
@@ -226,9 +228,11 @@ public class BridgeIInputMethodManager implements IInputMethodManager {
    }

    @Override
    public InputBindResult windowGainedFocus(IInputMethodClient client, IBinder windowToken,
            int controlFlags, int softInputMode, int windowFlags, EditorInfo attribute,
            IInputContext inputContext) throws RemoteException {
    public InputBindResult windowGainedFocus(
            /* @InputMethodClient.StartInputReason */ int startInputReason,
            IInputMethodClient client, IBinder windowToken, int controlFlags, int softInputMode,
            int windowFlags, EditorInfo attribute, IInputContext inputContext)
            throws RemoteException {
        // TODO Auto-generated method stub
        return null;
    }