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

Commit da37acb2 authored by Daniel Sandler's avatar Daniel Sandler Committed by Android Git Automerger
Browse files

am e9655887: Merge "Make Notification action data structures public."

* commit 'e9655887':
  Make Notification action data structures public.
parents fb09c375 e9655887
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -448,7 +448,7 @@ public class Notification implements Parcelable
     * Structure to encapsulate an "action", including title and icon, that can be attached to a Notification.
     * @hide
     */
    private static class Action implements Parcelable {
    public static class Action implements Parcelable {
        public int icon;
        public CharSequence title;
        public PendingIntent actionIntent;
@@ -500,7 +500,10 @@ public class Notification implements Parcelable
        };
    }

    private Action[] actions;
    /**
     * @hide
     */
    public Action[] actions;

    /**
     * Constructs a Notification object with default values.