From 244abe21b6a2fb670e772528ac0a46a456a3796d Mon Sep 17 00:00:00 2001 From: Hyunyoung Song Date: Tue, 16 Jun 2020 00:11:43 -0700 Subject: [PATCH] Add two more enums to LauncherState Test: system image builds Bug: 137777105 Change-Id: Ie383809b8d38dbaed8fd99e46a0cc712b1d202d7 --- core/proto/android/stats/launcher/launcher.proto | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/core/proto/android/stats/launcher/launcher.proto b/core/proto/android/stats/launcher/launcher.proto index dbd0e038c40c1..fc177d57b1936 100644 --- a/core/proto/android/stats/launcher/launcher.proto +++ b/core/proto/android/stats/launcher/launcher.proto @@ -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 {