Adds PredictedHotseatContainer to launcher_atom.proto

Used for differentiating logs from normal hotseat and predicted hotseat.

Bug: 158218197
Change-Id: I011ff724ea0916b32f680dc24e8d6090d3df766d
This commit is contained in:
thiruram
2020-06-10 10:44:58 -07:00
parent c11a808b99
commit 18c2495b8f
3 changed files with 22 additions and 3 deletions

View File

@@ -53,6 +53,7 @@ message ContainerInfo {
SearchResultContainer search_result_container = 7;
ShortcutsContainer shortcuts_container = 8;
SettingsContainer settings_container = 9;
PredictedHotseatContainer predicted_hotseat_container = 10;
}
}
@@ -151,6 +152,14 @@ message HotseatContainer {
optional int32 index = 1;
}
// Represents hotseat container with prediction feature enabled.
message PredictedHotseatContainer {
optional int32 index = 1;
// No of hotseat positions filled with predicted items.
optional int32 cardinality = 2;
}
message FolderContainer {
optional int32 page_index = 1 [default = -1];
optional int32 grid_x = 2 [default = -1];