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

Commit 4be490ab authored by Achim Thesmann's avatar Achim Thesmann Committed by Android (Google) Code Review
Browse files

Merge "Make PendingIntent.send public API." into udc-dev

parents f682c0d4 96b3f8db
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -6944,6 +6944,7 @@ package android.app {
    method public void send() throws android.app.PendingIntent.CanceledException;
    method public void send(int) throws android.app.PendingIntent.CanceledException;
    method public void send(android.content.Context, int, @Nullable android.content.Intent) throws android.app.PendingIntent.CanceledException;
    method public void send(@Nullable android.os.Bundle) throws android.app.PendingIntent.CanceledException;
    method public void send(int, @Nullable android.app.PendingIntent.OnFinished, @Nullable android.os.Handler) throws android.app.PendingIntent.CanceledException;
    method public void send(android.content.Context, int, @Nullable android.content.Intent, @Nullable android.app.PendingIntent.OnFinished, @Nullable android.os.Handler) throws android.app.PendingIntent.CanceledException;
    method public void send(android.content.Context, int, @Nullable android.content.Intent, @Nullable android.app.PendingIntent.OnFinished, @Nullable android.os.Handler, @Nullable String) throws android.app.PendingIntent.CanceledException;
+1 −3
Original line number Diff line number Diff line
@@ -892,10 +892,8 @@ public final class PendingIntent implements Parcelable {
     * @param options Additional options the caller would like to provide to modify the
     * sending behavior.  May be built from an {@link ActivityOptions} to apply to an
     * activity start.
     *
     * @hide
     */
    public void send(Bundle options) throws CanceledException {
    public void send(@Nullable Bundle options) throws CanceledException {
        send(null, 0, null, null, null, null, options);
    }