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

This commit is contained in:
Hyunyoung Song
2020-06-17 16:05:34 +00:00
committed by Android (Google) Code Review

View File

@ -32,10 +32,12 @@ enum LauncherAction {
}
enum LauncherState {
BACKGROUND = 0;
HOME = 1;
OVERVIEW = 2;
ALLAPPS = 3;
LAUNCHER_STATE_UNSPECIFIED = 0;
BACKGROUND = 1;
HOME = 2;
OVERVIEW = 3;
ALLAPPS = 4;
UNCHANGED = 5;
}
message LauncherTarget {