diff options
author | Android (Google) Code Review <android-gerrit@google.com> | 2009-05-21 09:42:38 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-05-21 09:42:38 -0700 |
commit | 9b1e1400df4c6c4b69985f164097f0c842dd796f (patch) | |
tree | cae61f8f495e8a93dcc0ffdc887e7445c46fae70 /test-runner | |
parent | a59fa9b6cba9cae0f7d02e240dbd10603cc127a5 (diff) | |
parent | 8c690ea9976d644db3c96eddbbbd2d50eac56913 (diff) | |
download | frameworks_base-9b1e1400df4c6c4b69985f164097f0c842dd796f.zip frameworks_base-9b1e1400df4c6c4b69985f164097f0c842dd796f.tar.gz frameworks_base-9b1e1400df4c6c4b69985f164097f0c842dd796f.tar.bz2 |
am 8c690ea9: Merge change 2182 into donut
Merge commit '8c690ea9976d644db3c96eddbbbd2d50eac56913'
* commit '8c690ea9976d644db3c96eddbbbd2d50eac56913':
location: Replace ILocationCollector interface with new ILocationProvider method
Diffstat (limited to 'test-runner')
-rw-r--r-- | test-runner/android/test/TestLocationProvider.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test-runner/android/test/TestLocationProvider.java b/test-runner/android/test/TestLocationProvider.java index dded745..2ea020e 100644 --- a/test-runner/android/test/TestLocationProvider.java +++ b/test-runner/android/test/TestLocationProvider.java @@ -159,6 +159,9 @@ public class TestLocationProvider extends ILocationProvider.Stub { public void updateNetworkState(int state) { } + public void updateLocation(Location location) { + } + public boolean sendExtraCommand(String command, Bundle extras) { return false; } |