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

Commit b0a8d87c authored by Radhika Agrawal's avatar Radhika Agrawal Committed by Automerger Merge Worker
Browse files

Merge "API review comments Test: make Bug: b/150126235" into rvc-dev am:...

Merge "API review comments Test: make Bug: b/150126235" into rvc-dev am: 66a3e599 am: b2344a53 am: f790f237

Change-Id: Ibb77a3f3d8e5a152a8986c831b87b347d3b85b49
parents 73ab4910 f790f237
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -10616,8 +10616,8 @@ package android.telephony {
    method public int getNumRtpPacketsTransmitted();
    method public int getNumRtpPacketsTransmittedLost();
    method public int getUplinkCallQualityLevel();
    method public boolean isIncomingSilenceDetected();
    method public boolean isOutgoingSilenceDetected();
    method public boolean isIncomingSilenceDetectedAtCallSetup();
    method public boolean isOutgoingSilenceDetectedAtCallSetup();
    method public boolean isRtpInactivityDetected();
    method public void writeToParcel(android.os.Parcel, int);
    field public static final int CALL_QUALITY_BAD = 4; // 0x4
+2 −2
Original line number Diff line number Diff line
@@ -3622,8 +3622,8 @@ package android.telephony {
    method public int getNumRtpPacketsTransmitted();
    method public int getNumRtpPacketsTransmittedLost();
    method public int getUplinkCallQualityLevel();
    method public boolean isIncomingSilenceDetected();
    method public boolean isOutgoingSilenceDetected();
    method public boolean isIncomingSilenceDetectedAtCallSetup();
    method public boolean isOutgoingSilenceDetectedAtCallSetup();
    method public boolean isRtpInactivityDetected();
    method public void writeToParcel(android.os.Parcel, int);
    field public static final int CALL_QUALITY_BAD = 4; // 0x4
+2 −2
Original line number Diff line number Diff line
@@ -42,8 +42,8 @@ package android.telephony {
    method public int getNumRtpPacketsTransmitted();
    method public int getNumRtpPacketsTransmittedLost();
    method public int getUplinkCallQualityLevel();
    method public boolean isIncomingSilenceDetected();
    method public boolean isOutgoingSilenceDetected();
    method public boolean isIncomingSilenceDetectedAtCallSetup();
    method public boolean isOutgoingSilenceDetectedAtCallSetup();
    method public boolean isRtpInactivityDetected();
    method public void writeToParcel(android.os.Parcel, int);
    field public static final int CALL_QUALITY_BAD = 4; // 0x4
+2 −2
Original line number Diff line number Diff line
@@ -287,7 +287,7 @@ public final class CallQuality implements Parcelable {
     * Returns true if only silence rtp packets are received for a duration of 20 seconds starting
     * at call setup
     */
    public boolean isIncomingSilenceDetected() {
    public boolean isIncomingSilenceDetectedAtCallSetup() {
        return mRxSilenceDetected;
    }

@@ -295,7 +295,7 @@ public final class CallQuality implements Parcelable {
      * Returns true if only silence rtp packets are sent for a duration of 20 seconds starting at
      * call setup
      */
    public boolean isOutgoingSilenceDetected() {
    public boolean isOutgoingSilenceDetectedAtCallSetup() {
        return mTxSilenceDetected;
    }