summaryrefslogtreecommitdiff
path: root/core/proto/android
diff options
context:
space:
mode:
authorHyunyoung Song <hyunyoungs@google.com>2020-06-17 16:05:34 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2020-06-17 16:05:34 +0000
commitd53382b05d12ba1584843a8f7f1cf793c40a2ae5 (patch)
treeff9fd68802b828d3bdb4b298a1625caba454bc62 /core/proto/android
parent3258a3e170eb76b2052be9633b930caf8cdb27b7 (diff)
parent244abe21b6a2fb670e772528ac0a46a456a3796d (diff)
Merge "Add two more enums to LauncherState" into rvc-dev
Diffstat (limited to 'core/proto/android')
-rw-r--r--core/proto/android/stats/launcher/launcher.proto10
1 files changed, 6 insertions, 4 deletions
diff --git a/core/proto/android/stats/launcher/launcher.proto b/core/proto/android/stats/launcher/launcher.proto
index dbd0e038c40c..fc177d57b193 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 {