Merge "App Pairs (behind flag): Add new ItemInfo types and DB save functionality" into udc-dev

This commit is contained in:
Jeremy Sim
2023-04-22 03:21:17 +00:00
committed by Android (Google) Code Review
9 changed files with 155 additions and 11 deletions

View File

@@ -84,6 +84,7 @@ public class SplitSelectStateController {
private final Handler mHandler;
private final RecentsModel mRecentTasksModel;
private final SplitAnimationController mSplitAnimationController;
private final AppPairsController mAppPairsController;
private StatsLogManager mStatsLogManager;
private final SystemUiProxy mSystemUiProxy;
private final StateManager mStateManager;
@@ -128,6 +129,7 @@ public class SplitSelectStateController {
mDepthController = depthController;
mRecentTasksModel = recentsModel;
mSplitAnimationController = new SplitAnimationController(this);
mAppPairsController = new AppPairsController(context, this);
}
/**
@@ -587,4 +589,8 @@ public class SplitSelectStateController {
public FloatingTaskView getFirstFloatingTaskView() {
return mFirstFloatingTaskView;
}
public AppPairsController getAppPairsController() {
return mAppPairsController;
}
}