summaryrefslogtreecommitdiff
path: root/cmds/statsd/src
diff options
context:
space:
mode:
author Muhammad Qureshi <muhammadq@google.com> 2020-03-30 21:14:21 -0700
committer Muhammad Qureshi <muhammadq@google.com> 2020-03-31 20:24:22 -0700
commit22e52daa05cd97a9ddcf6360cbf4fa8a380bcc4a (patch)
treef870f2836a908e897c13bcc33eae23245eb2c55c /cmds/statsd/src
parent4b141386b0f75b832ac7eb5f675b076e4aad264d (diff)
Log annotations for pulled atoms.
- Also add is_uid annotation to PackageNotication atoms. Bug: 150414118 Test: m Change-Id: I5e9abfe4772b04a66bc055e0d784469d94597748
Diffstat (limited to 'cmds/statsd/src')
-rw-r--r--cmds/statsd/src/atoms.proto6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmds/statsd/src/atoms.proto b/cmds/statsd/src/atoms.proto
index 9bba69c6e2ea..7c45cbb161ad 100644
--- a/cmds/statsd/src/atoms.proto
+++ b/cmds/statsd/src/atoms.proto
@@ -5808,7 +5808,7 @@ message NotificationRemoteViews {
*/
message PackageNotificationPreferences {
// Uid under which the package is installed.
- optional int32 uid = 1;
+ optional int32 uid = 1 [(is_uid) = true];
// Notification importance, which specifies when and how a notification is displayed.
// Specified under core/java/android/app/NotificationManager.java.
optional int32 importance = 2;
@@ -5825,7 +5825,7 @@ message PackageNotificationPreferences {
*/
message PackageNotificationChannelPreferences {
// Uid under which the package is installed.
- optional int32 uid = 1;
+ optional int32 uid = 1 [(is_uid) = true];
// Channel's ID. Should always be available.
optional string channel_id = 2;
// Channel's name. Should always be available.
@@ -5848,7 +5848,7 @@ message PackageNotificationChannelPreferences {
*/
message PackageNotificationChannelGroupPreferences {
// Uid under which the package is installed.
- optional int32 uid = 1;
+ optional int32 uid = 1 [(is_uid) = true];
// Channel Group's ID. Should always be available.
optional string group_id = 2;
// Channel Group's name. Should always be available.