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

Commit bf208bd6 authored by Xinyi Mao's avatar Xinyi Mao Committed by Android (Google) Code Review
Browse files

Merge "Impl private space for extreme battery saver mode." into main

parents 0104e414 9d994e6c
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -1918,6 +1918,16 @@ public class ApplicationsState {
        }
    };

    public static final AppFilter FILTER_PERSONAL_OR_PRIVATE = new AppFilter() {
        @Override
        public void init() {}

        @Override
        public boolean filterApp(AppEntry entry) {
            return entry.showInPersonalTab || entry.isPrivateProfile();
        }
    };

    /**
     * Displays a combined list with "downloaded" and "visible in launcher" apps only.
     */