From cec88edd03ff1f83c38a953d99f43240213044fa Mon Sep 17 00:00:00 2001 From: Will Brockman Date: Mon, 27 Apr 2020 13:11:02 -0400 Subject: [PATCH] Update NotificationSection enum. The enum NotificationSection, used in the NotificationPanelReported atom (245), needs to be updated to reflect the current NotificationsSectionManager.PriorityBucket possibilities. Bug: 155004478 Test: make statsd_testdrive && $ANDROID_HOST_OUT/bin/statsd_testdrive 245 Change-Id: I4194a1e304f4498fa0ddbb2c385296864eb19cfc --- cmds/statsd/src/atoms.proto | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cmds/statsd/src/atoms.proto b/cmds/statsd/src/atoms.proto index bb00e23fc95ca..8d756281c431c 100644 --- a/cmds/statsd/src/atoms.proto +++ b/cmds/statsd/src/atoms.proto @@ -3915,9 +3915,10 @@ message Notification { enum NotificationSection { SECTION_UNKNOWN = 0; SECTION_HEADS_UP = 1; - SECTION_PEOPLE = 2; - SECTION_ALERTING = 3; - SECTION_SILENT = 4; + SECTION_MEDIA_CONTROLS = 2; + SECTION_PEOPLE = 3; + SECTION_ALERTING = 4; + SECTION_SILENT = 5; } optional NotificationSection section = 6; }