Inlining BaseQuickstepLauncher to QuickstepLauncher

Bug: 243022799
Test: Presubmit
Change-Id: I3706fc1f10d88ea73bd873c7e94c3e78795791eb
This commit is contained in:
Sunny Goyal
2022-08-18 09:51:07 -07:00
parent 831f5ee748
commit d6801af69a
21 changed files with 694 additions and 772 deletions
@@ -42,7 +42,6 @@ import android.util.FloatProperty;
import androidx.annotation.NonNull;
import com.android.launcher3.BaseQuickstepLauncher;
import com.android.launcher3.LauncherState;
import com.android.launcher3.Utilities;
import com.android.launcher3.anim.PendingAnimation;
@@ -61,9 +60,9 @@ import com.android.quickstep.views.RecentsView;
public abstract class BaseRecentsViewStateController<T extends RecentsView>
implements StateHandler<LauncherState> {
protected final T mRecentsView;
protected final BaseQuickstepLauncher mLauncher;
protected final QuickstepLauncher mLauncher;
public BaseRecentsViewStateController(@NonNull BaseQuickstepLauncher launcher) {
public BaseRecentsViewStateController(@NonNull QuickstepLauncher launcher) {
mLauncher = launcher;
mRecentsView = launcher.getOverviewPanel();
}