Loading src/com/android/server/telecom/InCallController.java +6 −0 Original line number Diff line number Diff line Loading @@ -961,6 +961,12 @@ public class InCallController extends CallsManagerListenerBase { updateCall(call); } @Override public void onIsVoipAudioModeChanged(Call call) { Log.d(this, "onIsVoipAudioModeChanged %s", call); updateCall(call); } void bringToForeground(boolean showDialpad) { if (!mInCallServices.isEmpty()) { for (IInCallService inCallService : mInCallServices.values()) { Loading src/com/android/server/telecom/ParcelableCallUtils.java +4 −0 Original line number Diff line number Diff line Loading @@ -102,6 +102,10 @@ public class ParcelableCallUtils { properties |= android.telecom.Call.Details.PROPERTY_ENTERPRISE_CALL; } if (call.getIsVoipAudioMode()) { properties |= android.telecom.Call.Details.PROPERTY_VOIP_AUDIO_MODE; } // If this is a single-SIM device, the "default SIM" will always be the only SIM. boolean isDefaultSmsAccount = phoneAccountRegistrar != null && phoneAccountRegistrar.isUserSelectedSmsPhoneAccount(call.getTargetPhoneAccount()); Loading Loading
src/com/android/server/telecom/InCallController.java +6 −0 Original line number Diff line number Diff line Loading @@ -961,6 +961,12 @@ public class InCallController extends CallsManagerListenerBase { updateCall(call); } @Override public void onIsVoipAudioModeChanged(Call call) { Log.d(this, "onIsVoipAudioModeChanged %s", call); updateCall(call); } void bringToForeground(boolean showDialpad) { if (!mInCallServices.isEmpty()) { for (IInCallService inCallService : mInCallServices.values()) { Loading
src/com/android/server/telecom/ParcelableCallUtils.java +4 −0 Original line number Diff line number Diff line Loading @@ -102,6 +102,10 @@ public class ParcelableCallUtils { properties |= android.telecom.Call.Details.PROPERTY_ENTERPRISE_CALL; } if (call.getIsVoipAudioMode()) { properties |= android.telecom.Call.Details.PROPERTY_VOIP_AUDIO_MODE; } // If this is a single-SIM device, the "default SIM" will always be the only SIM. boolean isDefaultSmsAccount = phoneAccountRegistrar != null && phoneAccountRegistrar.isUserSelectedSmsPhoneAccount(call.getTargetPhoneAccount()); Loading