summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorWink Saville <wink@google.com>2012-07-17 11:14:28 -0700
committerWink Saville <wink@google.com>2012-07-18 11:45:31 -0700
commitef1d4bff9bbf7d967dbcace73f08910e14e367d0 (patch)
tree4629096d476757e3ec2f0c4879cdedb5de6d1a15 /tests
parent013125a96b1e6f46eed507c65bce65ebfec60b6d (diff)
downloadframeworks_opt_telephony-ef1d4bff9bbf7d967dbcace73f08910e14e367d0.zip
frameworks_opt_telephony-ef1d4bff9bbf7d967dbcace73f08910e14e367d0.tar.gz
frameworks_opt_telephony-ef1d4bff9bbf7d967dbcace73f08910e14e367d0.tar.bz2
Revise CellInfo API's
Change-Id: I35bc22caf4a6a2255f2ce122690823f8d602b359
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) {
}
}