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

Commit bf82544a authored by Santos Cordon's avatar Santos Cordon Committed by Android (Google) Code Review
Browse files

Merge "Preempt build error from merge with CL (2/2)"

parents e73a0ab4 dd36901a
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -27781,6 +27781,7 @@ package android.telecomm {
  public abstract class InCallService extends android.app.Service {
    ctor protected InCallService();
    method protected abstract void addCall(android.telecomm.InCallCall);
    method protected abstract void bringToForeground(boolean);
    method protected final android.telecomm.InCallAdapter getAdapter();
    method protected void onAdapterAttached(android.telecomm.InCallAdapter);
    method protected abstract void onAudioStateChanged(android.telecomm.CallAudioState);
+7 −0
Original line number Diff line number Diff line
@@ -206,4 +206,11 @@ public abstract class InCallService extends Service {
     * @param audioState The new {@link CallAudioState}.
     */
    protected abstract void onAudioStateChanged(CallAudioState audioState);

    /**
     * Brings the in-call screen to the foreground.
     *
     * @param showDialpad If true, put up the dialpad when the screen is shown.
     */
    protected abstract void bringToForeground(boolean showDialpad);
}