Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cec88edd authored by Will Brockman's avatar Will Brockman
Browse files

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
parent c65d2c3e
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -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;
}