diff options
author | 2021-08-24 14:32:10 -0700 | |
---|---|---|
committer | 2021-09-13 16:15:52 -0700 | |
commit | be8b2ad03d5ada20b8d22b8bfde8cfbcb34e1acf (patch) | |
tree | ef337bc34c1e765de07c604e34ccf753295bde19 /protos | |
parent | 94c673c64db38b5a7727fe896136c03a1280f089 (diff) |
Add TaskBarContainer to launcher_atom.proto
Bug: 193009817
Test: Manual
Change-Id: Ib69be2b2405ab38891dff34c4d366105cd2499c1
Diffstat (limited to 'protos')
-rw-r--r-- | protos/launcher_atom.proto | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/protos/launcher_atom.proto b/protos/launcher_atom.proto index 6d49d75953..6dfb84ea2f 100644 --- a/protos/launcher_atom.proto +++ b/protos/launcher_atom.proto @@ -59,6 +59,7 @@ message ContainerInfo { SettingsContainer settings_container = 9; PredictedHotseatContainer predicted_hotseat_container = 10; TaskSwitcherContainer task_switcher_container = 11; + TaskBarContainer task_bar_container = 12; ExtendedContainers extended_containers = 20; } } @@ -100,6 +101,16 @@ message SettingsContainer { message TaskSwitcherContainer { } +// Container for taskbar. +// Configured to show up on large screens(tablet-sized) such as foldables in expanded state, within +// an app view(not in launcher screen). +message TaskBarContainer { + optional int32 index = 1; + + // Bit encoded value to capture pinned and predicted taskbar positions. + optional int32 cardinality = 2; +} + enum Attribute { UNKNOWN = 0; DEFAULT_LAYOUT = 1; // icon automatically placed in workspace, folder, hotseat |