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

Commit 6cb428ef authored by Yohei Yukawa's avatar Yohei Yukawa Committed by Android (Google) Code Review
Browse files

Merge "Always set BIND_SCHEDULE_LIKE_TOP_APP for IMEs"

parents cd241965 dd3eb607
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -89,7 +89,8 @@ final class InputMethodBindingController {
            Context.BIND_AUTO_CREATE
                    | Context.BIND_NOT_VISIBLE
                    | Context.BIND_NOT_FOREGROUND
                    | Context.BIND_IMPORTANT_BACKGROUND;
                    | Context.BIND_IMPORTANT_BACKGROUND
                    | Context.BIND_SCHEDULE_LIKE_TOP_APP;
    /**
     * Binding flags used only while the {@link InputMethodService} is showing window.
     */
@@ -98,8 +99,7 @@ final class InputMethodBindingController {
                    | Context.BIND_TREAT_LIKE_ACTIVITY
                    | Context.BIND_FOREGROUND_SERVICE
                    | Context.BIND_INCLUDE_CAPABILITIES
                    | Context.BIND_SHOWING_UI
                    | Context.BIND_SCHEDULE_LIKE_TOP_APP;
                    | Context.BIND_SHOWING_UI;

    InputMethodBindingController(@NonNull InputMethodManagerService service) {
        mService = service;