summaryrefslogtreecommitdiff
path: root/protos
diff options
context:
space:
mode:
authorBrian Isganitis <brianji@google.com>2022-04-11 12:09:34 -0700
committerBrian Isganitis <brianji@google.com>2022-04-11 12:14:14 -0700
commit5b89b31b127f62ce2936e40ba5ec723c31dcc5b0 (patch)
treea4456a9969114e0714a294f4e8476e4ea3981427 /protos
parent795a9a8ceefaf8fb94b764a4b33430d2f5a48502 (diff)
downloadLauncher3-5b89b31b127f62ce2936e40ba5ec723c31dcc5b0.tar.gz
Log taskbar all apps entrypoint, launches, and drags
Test: wwdebug, wwlogcat, ensure container is formatted as follows: container_info { all_apps_container { taskbar { } } } Bug: 204696617 Change-Id: I2492b133f95fccb059010bc9e5ed6cce73c211f9
Diffstat (limited to 'protos')
-rw-r--r--protos/launcher_atom.proto6
1 files changed, 6 insertions, 0 deletions
diff --git a/protos/launcher_atom.proto b/protos/launcher_atom.proto
index cf854ed011..10eedc8578 100644
--- a/protos/launcher_atom.proto
+++ b/protos/launcher_atom.proto
@@ -76,6 +76,9 @@ message ContainerInfo {
// Represents the apps list sorted alphabetically inside the all-apps view.
message AllAppsContainer {
+ oneof ParentContainer {
+ TaskBarContainer taskbar_container = 1;
+ }
}
message WidgetsContainer {
@@ -83,6 +86,9 @@ message WidgetsContainer {
// Represents the predicted apps row(top row) in the all-apps view.
message PredictionContainer {
+ oneof ParentContainer {
+ TaskBarContainer taskbar_container = 1;
+ }
}
// Represents the apps container within search results.