summaryrefslogtreecommitdiff
path: root/protos
diff options
context:
space:
mode:
authorthiruram <thiruram@google.com>2020-06-10 10:44:58 -0700
committerthiruram <thiruram@google.com>2020-06-10 10:44:58 -0700
commit18c2495b8f9166b639ba4306fa6eee37f8a32f42 (patch)
treed705878ddca0860f8c387ded3e2f98f9c485f69f /protos
parentc11a808b998bef193ff62cef1498eded5997e602 (diff)
downloadLauncher3-18c2495b8f9166b639ba4306fa6eee37f8a32f42.tar.gz
Adds PredictedHotseatContainer to launcher_atom.proto
Used for differentiating logs from normal hotseat and predicted hotseat. Bug: 158218197 Change-Id: I011ff724ea0916b32f680dc24e8d6090d3df766d
Diffstat (limited to 'protos')
-rw-r--r--protos/launcher_atom.proto9
1 files changed, 9 insertions, 0 deletions
diff --git a/protos/launcher_atom.proto b/protos/launcher_atom.proto
index c6e8c20b86..7e8e51e100 100644
--- a/protos/launcher_atom.proto
+++ b/protos/launcher_atom.proto
@@ -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];