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

Commit d49e0d4a authored by Jorge Gil's avatar Jorge Gil
Browse files

Fix wrong parameter order for main/bg thread executors

Fix: 379050724
Flag: EXEMPT bug fix
Test: m
Change-Id: I5e422606311924eed866644174e5278b509793f5
parent 51c45c00
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -63,6 +63,7 @@ import com.android.wm.shell.common.SyncTransactionQueue;
import com.android.wm.shell.freeform.FreeformTaskTransitionStarter;
import com.android.wm.shell.shared.FocusTransitionListener;
import com.android.wm.shell.shared.annotations.ShellBackgroundThread;
import com.android.wm.shell.shared.annotations.ShellMainThread;
import com.android.wm.shell.splitscreen.SplitScreenController;
import com.android.wm.shell.sysui.ShellInit;
import com.android.wm.shell.transition.FocusTransitionObserver;
@@ -119,8 +120,8 @@ public class CaptionWindowDecorViewModel implements WindowDecorViewModel, FocusT
    public CaptionWindowDecorViewModel(
            Context context,
            Handler mainHandler,
            @ShellMainThread ShellExecutor shellExecutor,
            @ShellBackgroundThread ShellExecutor bgExecutor,
            ShellExecutor shellExecutor,
            Choreographer mainChoreographer,
            IWindowManager windowManager,
            ShellInit shellInit,