summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnushree Ganjam <ganjam@google.com>2023-06-02 01:23:02 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-06-02 01:23:02 +0000
commit48a034f666a7e3343323d3f838a8222781421765 (patch)
tree435519b3a1f52b4586383fbdd9a3f87ec6feecbe
parentd540e8e88e606b9a0e0d084169686642a9b5a244 (diff)
parent3172f8b2089b14f7daa2cc1b4a8f62bd1f975f3a (diff)
downloadproto_logging-48a034f666a7e3343323d3f838a8222781421765.tar.gz
Merge "Add repeated uid field to ImpressionLogging proto." into udc-dev am: 3172f8b208
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/proto_logging/+/23270678 Change-Id: I926a81003dea00a66e890b8cf76a605ddb7fa5b4 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--stats/atoms/sysui/sysui_atoms.proto5
1 files changed, 5 insertions, 0 deletions
diff --git a/stats/atoms/sysui/sysui_atoms.proto b/stats/atoms/sysui/sysui_atoms.proto
index ae21619b..369ff11c 100644
--- a/stats/atoms/sysui/sysui_atoms.proto
+++ b/stats/atoms/sysui/sysui_atoms.proto
@@ -711,6 +711,11 @@ message LauncherImpressionEvent {
// If the corresponding result_type is above or below keyboard.
// If 50% of result is visible, then is_above_keyboard = true
repeated bool is_above_keyboard = 7;
+
+ // UID of the application (can be mapped to package name) corresponding to the result_type.
+ // The default value of uid entry will be -1 to indicate package name is not
+ // found.
+ repeated int32 uid = 8 [(is_uid) = true];
}
/**