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

Commit 6cd9cfd3 authored by Hyunyoung Song's avatar Hyunyoung Song Committed by Automerger Merge Worker
Browse files

Merge "Add two more enums to LauncherState" into rvc-dev am: d53382b0

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/11876680

Change-Id: I592c39bb7ce195ab949cc30302ff3d9011875ab9
parents 0c11f15f d53382b0
Loading
Loading
Loading
Loading
+6 −4
Original line number Original line Diff line number Diff line
@@ -32,10 +32,12 @@ enum LauncherAction {
}
}


enum LauncherState {
enum LauncherState {
    BACKGROUND = 0;
    LAUNCHER_STATE_UNSPECIFIED = 0;
    HOME = 1;
    BACKGROUND = 1;
    OVERVIEW = 2;
    HOME = 2;
    ALLAPPS = 3;
    OVERVIEW = 3;
    ALLAPPS = 4;
    UNCHANGED = 5;
}
}


message LauncherTarget {
message LauncherTarget {