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

Commit 3fc948b4 authored by Nancy Chen's avatar Nancy Chen Committed by Android Git Automerger
Browse files

am 7bbac19e: Merge "Better comments for the CONNECTING state." into lmp-dev

* commit '7bbac19ecafb8f87dabf2025996ccb73e18ea05f':
  Better comments for the CONNECTING state.
parents b9cc15c8 a602082f
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -70,7 +70,9 @@ public final class Call {
    public static final int STATE_PRE_DIAL_WAIT = 8;

    /**
     * The state of an outgoing {@code Call}, before Telecomm broadcast intent has returned.
     * The initial state of an outgoing {@code Call}.
     * Common transitions are to {@link #STATE_DIALING} state for a successful call or
     * {@link #STATE_DISCONNECTED} if it failed.
     */
    public static final int STATE_CONNECTING = 9;

+3 −2
Original line number Diff line number Diff line
@@ -32,8 +32,9 @@ public enum CallState {
    NEW,

    /**
     * Indicates an outgoing call has been initiated and is waiting for the broadcast intent to
     * return and provide call details before proceeding.
     * The initial state of an outgoing {@code Call}.
     * Common transitions are to {@link #DIALING} state for a successful call or
     * {@link #DISCONNECTED} if it failed.
     */
    CONNECTING,