From fff5f48dce4c8dc956e027f3ef3c5ecfd3ec3a10 Mon Sep 17 00:00:00 2001 From: Jack Yu Date: Thu, 26 Jan 2017 12:45:57 -0800 Subject: [PATCH] Renamed voiceNetworkStateChanged and dataNetworkStateChanged The misleading voiceNetworkStateChanged should be renamed to networkStateChanged to reflect either voice or data network changes will trigger this indication. And dataNetworkStateChanged should be renamed to dataCallListChanged as well. Test: Build Change-Id: Icf20ceb3718794f7aa62650816714ac8679d101a --- telephony/java/com/android/internal/telephony/RILConstants.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telephony/java/com/android/internal/telephony/RILConstants.java b/telephony/java/com/android/internal/telephony/RILConstants.java index 891b8a1adb730..5ee7e23eabcac 100644 --- a/telephony/java/com/android/internal/telephony/RILConstants.java +++ b/telephony/java/com/android/internal/telephony/RILConstants.java @@ -417,7 +417,7 @@ cat include/telephony/ril.h | \ int RIL_UNSOL_RESPONSE_BASE = 1000; int RIL_UNSOL_RESPONSE_RADIO_STATE_CHANGED = 1000; int RIL_UNSOL_RESPONSE_CALL_STATE_CHANGED = 1001; - int RIL_UNSOL_RESPONSE_VOICE_NETWORK_STATE_CHANGED = 1002; + int RIL_UNSOL_RESPONSE_NETWORK_STATE_CHANGED = 1002; int RIL_UNSOL_RESPONSE_NEW_SMS = 1003; int RIL_UNSOL_RESPONSE_NEW_SMS_STATUS_REPORT = 1004; int RIL_UNSOL_RESPONSE_NEW_SMS_ON_SIM = 1005;