diff options
author | 2021-11-24 15:18:02 -0500 | |
---|---|---|
committer | 2021-12-06 18:37:07 +0000 | |
commit | 111a5c5df5ae56979a69e8a60f5634188738081f (patch) | |
tree | b58fdc3545f848f1e1a1a36914e30426d97d3fd2 /protos | |
parent | 5ec74a16f0320f5a2dbc4eba4af34577c3edbc55 (diff) |
Adding support for logging wallpaper container info.
Test: https://paste.googleplex.com/5350571797118976 shows logging carousel size and index of wallpaper tapped. If the wallpaper is a live wallpaper, we also log its application info.
Bug: 188222480
Change-Id: I6dd7ac20af7afd675d8a886d5b838263680f773e
Diffstat (limited to 'protos')
-rw-r--r-- | protos/launcher_atom.proto | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/protos/launcher_atom.proto b/protos/launcher_atom.proto index d1bf15223b..c5599887dd 100644 --- a/protos/launcher_atom.proto +++ b/protos/launcher_atom.proto @@ -60,6 +60,7 @@ message ContainerInfo { PredictedHotseatContainer predicted_hotseat_container = 10; TaskSwitcherContainer task_switcher_container = 11; TaskBarContainer task_bar_container = 12; + WallpapersContainer wallpapers_container = 13; ExtendedContainers extended_containers = 20; } } @@ -247,6 +248,12 @@ message FolderContainer { } } +// Represents wallpapers container for quick switching. +message WallpapersContainer { + // Number of wallpapers in the container. + optional int32 cardinality = 1; +} + // Represents state of EditText field before update. enum FromState { // Default value. |