summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Wink Saville <wink@google.com> 2011-10-24 11:10:36 -0700
committer Wink Saville <wink@google.com> 2011-10-24 11:10:36 -0700
commitcd3ec73f0ce164c718146bc1dbb7c430763be25a (patch)
treec6d7e20fdc06052e975049594240acf39a690da3
parentbe25d5b05639c8475b7faf312959923db86efa5d (diff)
Add getAvailableNetworks.
To allow a operator test to pass we need to manually select a network. Therefore getAvailableNetworks needs to be implemented on CDMALTEPhone so that RIL_REQUEST_QUERY_AVAILABLE_NETWORKS is sent to the RIL/radio. Bug: 5420630 Change-Id: I8e138b211d42755399a9e30f3e45dde2f579401e
-rw-r--r--telephony/java/com/android/internal/telephony/cdma/CDMALTEPhone.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/telephony/java/com/android/internal/telephony/cdma/CDMALTEPhone.java b/telephony/java/com/android/internal/telephony/cdma/CDMALTEPhone.java
index 4f50d2483f26..8534810d56c7 100644
--- a/telephony/java/com/android/internal/telephony/cdma/CDMALTEPhone.java
+++ b/telephony/java/com/android/internal/telephony/cdma/CDMALTEPhone.java
@@ -246,6 +246,11 @@ public class CDMALTEPhone extends CDMAPhone {
}
@Override
+ public void getAvailableNetworks(Message response) {
+ mCM.getAvailableNetworks(response);
+ }
+
+ @Override
public void requestIsimAuthentication(String nonce, Message result) {
mCM.requestIsimAuthentication(nonce, result);
}