DO NOT MERGE: Do not inject mock location to chipset
Bug: 177561690 Test: on device Change-Id: Icafbdf54fe807f8779377b13cb4e4eb265db692e
This commit is contained in:
@@ -1047,6 +1047,9 @@ public class GnssLocationProvider implements LocationProviderInterface, InjectNt
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void injectBestLocation(Location location) {
|
private void injectBestLocation(Location location) {
|
||||||
|
if (location.isFromMockProvider()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
int gnssLocationFlags = LOCATION_HAS_LAT_LONG |
|
int gnssLocationFlags = LOCATION_HAS_LAT_LONG |
|
||||||
(location.hasAltitude() ? LOCATION_HAS_ALTITUDE : 0) |
|
(location.hasAltitude() ? LOCATION_HAS_ALTITUDE : 0) |
|
||||||
(location.hasSpeed() ? LOCATION_HAS_SPEED : 0) |
|
(location.hasSpeed() ? LOCATION_HAS_SPEED : 0) |
|
||||||
@@ -1141,6 +1144,9 @@ public class GnssLocationProvider implements LocationProviderInterface, InjectNt
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void handleUpdateLocation(Location location) {
|
private void handleUpdateLocation(Location location) {
|
||||||
|
if (location.isFromMockProvider()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (location.hasAccuracy()) {
|
if (location.hasAccuracy()) {
|
||||||
native_inject_location(location.getLatitude(), location.getLongitude(),
|
native_inject_location(location.getLatitude(), location.getLongitude(),
|
||||||
location.getAccuracy());
|
location.getAccuracy());
|
||||||
|
|||||||
Reference in New Issue
Block a user