diff options
| author | Nick Pelly <npelly@google.com> | 2012-08-10 15:47:53 -0700 |
|---|---|---|
| committer | Nick Pelly <npelly@google.com> | 2012-08-10 17:17:32 -0700 |
| commit | 08ca1046fe4f1890f91241f8d082a024ef6cfd93 (patch) | |
| tree | da4e378d5fb57beac9ab8bca3f28e0f6da335456 /location/lib | |
| parent | 3914e4b7d12b014f73085cd6e34b6fd69ea26226 (diff) | |
| download | frameworks_base-08ca1046fe4f1890f91241f8d082a024ef6cfd93.zip frameworks_base-08ca1046fe4f1890f91241f8d082a024ef6cfd93.tar.gz frameworks_base-08ca1046fe4f1890f91241f8d082a024ef6cfd93.tar.bz2 | |
Fix a couple of bugs from the location overhaul.
Marshall LocationRequest array correctly.
Observe reportLocation from FusionEngine.
Actually deliver the setRequest message to fusion engine.
Change-Id: Iff64596fdd42f9fb06e563591dda9fbe0241533a
Diffstat (limited to 'location/lib')
| -rw-r--r-- | location/lib/java/com/android/location/provider/ProviderRequestUnbundled.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/location/lib/java/com/android/location/provider/ProviderRequestUnbundled.java b/location/lib/java/com/android/location/provider/ProviderRequestUnbundled.java index 7487a56..3ff19ca 100644 --- a/location/lib/java/com/android/location/provider/ProviderRequestUnbundled.java +++ b/location/lib/java/com/android/location/provider/ProviderRequestUnbundled.java @@ -42,6 +42,9 @@ public final class ProviderRequestUnbundled { return mRequest.interval; } + /** + * Never null. + */ public List<LocationRequest> getLocationRequests() { return mRequest.locationRequests; } |
