summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorWink Saville <wink@google.com>2012-07-25 14:11:40 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-07-25 14:11:40 -0700
commit3c93767bab0040818e0f530c0d0102654a87e0c0 (patch)
tree0b04893acf954bc067e45fd0f4f1d20908e5499c /tests
parentd95b0070db8345ecbb63bb41ffde2957aa36d091 (diff)
parentef1d4bff9bbf7d967dbcace73f08910e14e367d0 (diff)
downloadframeworks_opt_telephony-3c93767bab0040818e0f530c0d0102654a87e0c0.zip
frameworks_opt_telephony-3c93767bab0040818e0f530c0d0102654a87e0c0.tar.gz
frameworks_opt_telephony-3c93767bab0040818e0f530c0d0102654a87e0c0.tar.bz2
Merge "Revise CellInfo API's"
Diffstat (limited to 'tests')
-rw-r--r--tests/telephonytests/src/com/android/internal/telephony/TestPhoneNotifier.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/telephonytests/src/com/android/internal/telephony/TestPhoneNotifier.java b/tests/telephonytests/src/com/android/internal/telephony/TestPhoneNotifier.java
index b8f0568..761dfc7 100644
--- a/tests/telephonytests/src/com/android/internal/telephony/TestPhoneNotifier.java
+++ b/tests/telephonytests/src/com/android/internal/telephony/TestPhoneNotifier.java
@@ -20,6 +20,8 @@ import com.android.internal.telephony.Phone;
import com.android.internal.telephony.PhoneConstants;
import android.telephony.CellInfo;
+import java.util.List;
+
/**
* Stub class used for unit tests
*/
@@ -62,6 +64,6 @@ public class TestPhoneNotifier implements PhoneNotifier {
public void notifyOtaspChanged(Phone sender, int otaspMode) {
}
- public void notifyCellInfo(Phone sender, CellInfo cellInfo) {
+ public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo) {
}
}