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

Commit d6801af6 authored by Sunny Goyal's avatar Sunny Goyal
Browse files

Inlining BaseQuickstepLauncher to QuickstepLauncher

Bug: 243022799
Test: Presubmit
Change-Id: I3706fc1f10d88ea73bd873c7e94c3e78795791eb
parent 831f5ee7
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -23,12 +23,12 @@ import android.os.Bundle;


import androidx.annotation.Nullable;
import androidx.annotation.Nullable;


import com.android.launcher3.BaseQuickstepLauncher;
import com.android.launcher3.Launcher;
import com.android.launcher3.Launcher;
import com.android.launcher3.R;
import com.android.launcher3.R;
import com.android.launcher3.taskbar.LauncherTaskbarUIController;
import com.android.launcher3.taskbar.LauncherTaskbarUIController;
import com.android.launcher3.testing.DebugTestInformationHandler;
import com.android.launcher3.testing.DebugTestInformationHandler;
import com.android.launcher3.testing.shared.TestProtocol;
import com.android.launcher3.testing.shared.TestProtocol;
import com.android.launcher3.uioverrides.QuickstepLauncher;


import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutionException;


@@ -64,7 +64,7 @@ public abstract class DebugQuickstepTestInformationHandler extends QuickstepTest
                runOnUIThread(l -> {
                runOnUIThread(l -> {
                    enableManualTaskbarStashing(l, true);
                    enableManualTaskbarStashing(l, true);


                    BaseQuickstepLauncher quickstepLauncher = (BaseQuickstepLauncher) l;
                    QuickstepLauncher quickstepLauncher = (QuickstepLauncher) l;
                    LauncherTaskbarUIController taskbarUIController =
                    LauncherTaskbarUIController taskbarUIController =
                            quickstepLauncher.getTaskbarUIController();
                            quickstepLauncher.getTaskbarUIController();


@@ -90,7 +90,7 @@ public abstract class DebugQuickstepTestInformationHandler extends QuickstepTest
    }
    }


    private void enableManualTaskbarStashing(Launcher launcher, boolean enable) {
    private void enableManualTaskbarStashing(Launcher launcher, boolean enable) {
        BaseQuickstepLauncher quickstepLauncher = (BaseQuickstepLauncher) launcher;
        QuickstepLauncher quickstepLauncher = (QuickstepLauncher) launcher;
        LauncherTaskbarUIController taskbarUIController =
        LauncherTaskbarUIController taskbarUIController =
                quickstepLauncher.getTaskbarUIController();
                quickstepLauncher.getTaskbarUIController();


Loading