Loading telephony/java/com/android/internal/telephony/PhoneBase.java +2 −2 Original line number Diff line number Diff line Loading @@ -806,10 +806,10 @@ public abstract class PhoneBase extends Handler implements Phone { mNotifier.notifyDataConnection(this, reason, apnType, getDataConnectionState(apnType)); } public void notifyDataConnection() { public void notifyDataConnection(String reason) { String types[] = getActiveApnTypes(); for (String apnType : types) { mNotifier.notifyDataConnection(this, null, apnType, getDataConnectionState(apnType)); mNotifier.notifyDataConnection(this, reason, apnType, getDataConnectionState(apnType)); } } Loading telephony/java/com/android/internal/telephony/cdma/CdmaLteServiceStateTracker.java +1 −1 Original line number Diff line number Diff line Loading @@ -401,7 +401,7 @@ public class CdmaLteServiceStateTracker extends CdmaServiceStateTracker { } if ((hasCdmaDataConnectionChanged || hasNetworkTypeChanged)) { phone.notifyDataConnection(); phone.notifyDataConnection(null); } if (hasRoamingOn) { Loading telephony/java/com/android/internal/telephony/cdma/CdmaServiceStateTracker.java +1 −1 Original line number Diff line number Diff line Loading @@ -999,7 +999,7 @@ public class CdmaServiceStateTracker extends ServiceStateTracker { } if (hasCdmaDataConnectionChanged || hasNetworkTypeChanged) { phone.notifyDataConnection(); phone.notifyDataConnection(null); } if (hasRoamingOn) { Loading telephony/java/com/android/internal/telephony/gsm/GsmServiceStateTracker.java +1 −1 Original line number Diff line number Diff line Loading @@ -915,7 +915,7 @@ final class GsmServiceStateTracker extends ServiceStateTracker { } if (hasRadioTechnologyChanged) { phone.notifyDataConnection(Phone.REASON_NW_TYPE_CHANGED, Phone.APN_TYPE_ALL); phone.notifyDataConnection(Phone.REASON_NW_TYPE_CHANGED); } if (hasRoamingOn) { Loading Loading
telephony/java/com/android/internal/telephony/PhoneBase.java +2 −2 Original line number Diff line number Diff line Loading @@ -806,10 +806,10 @@ public abstract class PhoneBase extends Handler implements Phone { mNotifier.notifyDataConnection(this, reason, apnType, getDataConnectionState(apnType)); } public void notifyDataConnection() { public void notifyDataConnection(String reason) { String types[] = getActiveApnTypes(); for (String apnType : types) { mNotifier.notifyDataConnection(this, null, apnType, getDataConnectionState(apnType)); mNotifier.notifyDataConnection(this, reason, apnType, getDataConnectionState(apnType)); } } Loading
telephony/java/com/android/internal/telephony/cdma/CdmaLteServiceStateTracker.java +1 −1 Original line number Diff line number Diff line Loading @@ -401,7 +401,7 @@ public class CdmaLteServiceStateTracker extends CdmaServiceStateTracker { } if ((hasCdmaDataConnectionChanged || hasNetworkTypeChanged)) { phone.notifyDataConnection(); phone.notifyDataConnection(null); } if (hasRoamingOn) { Loading
telephony/java/com/android/internal/telephony/cdma/CdmaServiceStateTracker.java +1 −1 Original line number Diff line number Diff line Loading @@ -999,7 +999,7 @@ public class CdmaServiceStateTracker extends ServiceStateTracker { } if (hasCdmaDataConnectionChanged || hasNetworkTypeChanged) { phone.notifyDataConnection(); phone.notifyDataConnection(null); } if (hasRoamingOn) { Loading
telephony/java/com/android/internal/telephony/gsm/GsmServiceStateTracker.java +1 −1 Original line number Diff line number Diff line Loading @@ -915,7 +915,7 @@ final class GsmServiceStateTracker extends ServiceStateTracker { } if (hasRadioTechnologyChanged) { phone.notifyDataConnection(Phone.REASON_NW_TYPE_CHANGED, Phone.APN_TYPE_ALL); phone.notifyDataConnection(Phone.REASON_NW_TYPE_CHANGED); } if (hasRoamingOn) { Loading