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

Commit 5b4764e7 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Make binderDied(IBinder who) public API" am: dcbb21de

parents 70314058 dcbb21de
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -30074,6 +30074,7 @@ package android.os {
  public static interface IBinder.DeathRecipient {
  public static interface IBinder.DeathRecipient {
    method public void binderDied();
    method public void binderDied();
    method public default void binderDied(@NonNull android.os.IBinder);
  }
  }
  public interface IInterface {
  public interface IInterface {
+4 −2
Original line number Original line Diff line number Diff line
@@ -311,9 +311,11 @@ public interface IBinder {
        public void binderDied();
        public void binderDied();


        /**
        /**
         * @hide
         * Interface for receiving a callback when the process hosting an IBinder
         * has gone away.
         * @param who The IBinder that has become invalid
         */
         */
        default void binderDied(IBinder who) {
        default void binderDied(@NonNull IBinder who) {
            binderDied();
            binderDied();
        }
        }
    }
    }