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

Commit 1d82dcd2 authored by Rekha Kumar's avatar Rekha Kumar Committed by Deepak Kundra
Browse files

IMS: Ims Registration error codes support

-Support for IMS registration error code and error message to be
passed to UI

Change-Id: I0f8f51f51d63cca5133172ca9f90d6096ef9b182
CRs-Fixed: 791987, 791993

Conflicts:
	src/java/com/android/internal/telephony/imsphone/ImsPhoneCallTracker.java
parent 0fefe777
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -1511,12 +1511,6 @@ public final class ImsPhoneCallTracker extends CallTracker {
        public void onImsDisconnected(ImsReasonInfo imsReasonInfo) {
            if (DBG) log("onImsDisconnected imsReasonInfo=" + imsReasonInfo);
            mPhone.setServiceState(ServiceState.STATE_OUT_OF_SERVICE);
        }

        @Override
        public void onImsDisconnected() {
            if (DBG) log("onImsDisconnected");
            mPhone.setServiceState(ServiceState.STATE_OUT_OF_SERVICE);
            mPhone.notifyVoLteServiceStateChanged(new VoLteServiceState(
                VoLteServiceState.IMS_UNREGISTERED));
            mPhone.setImsRegistered(false);
@@ -1526,6 +1520,8 @@ public final class ImsPhoneCallTracker extends CallTracker {
        public void onImsProgressing() {
            if (DBG) log("onImsProgressing");
            mPhone.setServiceState(ServiceState.STATE_OUT_OF_SERVICE);
            mPhone.notifyVoLteServiceStateChanged(new VoLteServiceState(
                VoLteServiceState.IMS_UNREGISTERED));
            mPhone.setImsRegistered(false);
        }