diff options
author | Hyunyoung Song <hyunyoungs@google.com> | 2020-06-17 16:05:34 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2020-06-17 16:05:34 +0000 |
commit | d53382b05d12ba1584843a8f7f1cf793c40a2ae5 (patch) | |
tree | ff9fd68802b828d3bdb4b298a1625caba454bc62 /core/proto/android | |
parent | 3258a3e170eb76b2052be9633b930caf8cdb27b7 (diff) | |
parent | 244abe21b6a2fb670e772528ac0a46a456a3796d (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.proto | 10 |
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 { |