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
This commit is contained in:
Wink Saville
2011-10-24 11:10:36 -07:00
parent be25d5b056
commit cd3ec73f0c

View File

@@ -245,6 +245,11 @@ public class CDMALTEPhone extends CDMAPhone {
return mIccRecords.getMsisdnNumber();
}
@Override
public void getAvailableNetworks(Message response) {
mCM.getAvailableNetworks(response);
}
@Override
public void requestIsimAuthentication(String nonce, Message result) {
mCM.requestIsimAuthentication(nonce, result);