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

Commit 4275303c authored by Winson Chung's avatar Winson Chung
Browse files

Deprecating some old Recents logic

Bug: 117603579
Test: Everything still builds

Change-Id: I24cc5d77481ad9c76c2889b285b58aae3623ce9e
parent 74494b51
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -27,6 +27,7 @@ import com.android.systemui.shared.system.ActivityManagerWrapper;
/**
 * Background task resource loader
 */
@Deprecated
class BackgroundTaskLoader implements Runnable {
    static String TAG = "BackgroundTaskLoader";
    static boolean DEBUG = false;
+1 −0
Original line number Diff line number Diff line
@@ -27,6 +27,7 @@ import java.util.List;
/**
 * A list of filtered tasks.
 */
@Deprecated
class FilteredTaskList {

    private final ArrayList<Task> mTasks = new ArrayList<>();
+1 −0
Original line number Diff line number Diff line
@@ -34,6 +34,7 @@ import java.util.ArrayList;
/**
 * Loader class that loads full-resolution thumbnails when appropriate.
 */
@Deprecated
public class HighResThumbnailLoader implements
        TaskCallbacks, BackgroundTaskLoader.OnIdleChangedListener {

+1 −0
Original line number Diff line number Diff line
@@ -45,6 +45,7 @@ import java.util.List;
 *   3) executePlan() will actually load and fill in the icons and thumbnails according to the load
 *      options specified, such that we can transition into the Recents activity seamlessly
 */
@Deprecated
public class RecentsTaskLoadPlan {

    /** The set of conditions to preload tasks. */
+1 −0
Original line number Diff line number Diff line
@@ -42,6 +42,7 @@ import java.util.Map;
/**
 * Recents task loader
 */
@Deprecated
public class RecentsTaskLoader {
    private static final String TAG = "RecentsTaskLoader";
    private static final boolean DEBUG = false;
Loading