From e375384472472d22faa1a1255a35231b4265c128 Mon Sep 17 00:00:00 2001 From: Will Brockman Date: Tue, 3 Mar 2020 16:29:34 -0500 Subject: [PATCH] Update notification display buckets. Staying in sync with NotificationSectionsManager.PriorityBucket. Bug: 146488473 Test: statsd_testdrive 245 Change-Id: I161062593c75b34d7f2260fc6a7301c73b2f8a8d --- 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 e58e7bc113151..9645a466ec16c 100644 --- a/cmds/statsd/src/atoms.proto +++ b/cmds/statsd/src/atoms.proto @@ -3600,9 +3600,10 @@ message Notification { // See NotificationSectionsManager.PriorityBucket. enum NotificationSection { SECTION_UNKNOWN = 0; - SECTION_PEOPLE = 1; - SECTION_ALERTING = 2; - SECTION_SILENT = 3; + SECTION_HEADS_UP = 1; + SECTION_PEOPLE = 2; + SECTION_ALERTING = 3; + SECTION_SILENT = 4; } optional NotificationSection section = 6; }