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

Commit 2135b186 authored by Will Brockman's avatar Will Brockman
Browse files

Update NotificationSection enum.

Was missing one section, FOREGROUND_SERVICE.

Test: make statsd_testdrive
Bug: 165020584
Change-Id: If3a2d5c02d4cd9fea824aa952253beab2fbbcdc4
parent 633249a1
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -4004,7 +4004,7 @@ message Notification {
    optional bool is_group_summary = 5;

    // The section of the shade that the notification is in.
    // See NotificationSectionsManager.PriorityBucket.
    // See SystemUI Notifications.proto.
    enum NotificationSection {
        SECTION_UNKNOWN = 0;
        SECTION_HEADS_UP = 1;
@@ -4012,6 +4012,7 @@ message Notification {
        SECTION_PEOPLE = 3;
        SECTION_ALERTING = 4;
        SECTION_SILENT = 5;
        SECTION_FOREGROUND_SERVICE = 6;
    }
    optional NotificationSection section = 6;
}