diff options
author | destradaa <destradaa@google.com> | 2015-04-29 18:34:18 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-04-29 18:34:18 +0000 |
commit | cbba357159fdd2db94052addb14d989df39ccd97 (patch) | |
tree | 6422eb909935e6637059a9e8a28b924e0942d48e /location | |
parent | 402bcf77d2870837d271b6b1cceb0942be152a6d (diff) | |
parent | 2c160c1a64a696dcb6261311ca0a406a07231d33 (diff) | |
download | frameworks_base-cbba357159fdd2db94052addb14d989df39ccd97.zip frameworks_base-cbba357159fdd2db94052addb14d989df39ccd97.tar.gz frameworks_base-cbba357159fdd2db94052addb14d989df39ccd97.tar.bz2 |
am 2c160c1a: am bdf9ffdd: am c0667853: Merge "Add SystemApis in GpsMeasurements APIs to reflect changes in GPS HAL. b/19938206" into mnc-dev
* commit '2c160c1a64a696dcb6261311ca0a406a07231d33':
Add SystemApis in GpsMeasurements APIs to reflect changes in GPS HAL. b/19938206
Diffstat (limited to 'location')
-rw-r--r-- | location/java/android/location/GpsMeasurement.java | 4 | ||||
-rw-r--r-- | location/java/android/location/GpsNavigationMessage.java | 10 |
2 files changed, 0 insertions, 14 deletions
diff --git a/location/java/android/location/GpsMeasurement.java b/location/java/android/location/GpsMeasurement.java index df128c9..f13a440 100644 --- a/location/java/android/location/GpsMeasurement.java +++ b/location/java/android/location/GpsMeasurement.java @@ -140,8 +140,6 @@ public class GpsMeasurement implements Parcelable { /** * The state of the GPS receiver contains millisecond ambiguity. - * - * @hide */ public static final short STATE_MSEC_AMBIGUOUS = (1<<4); @@ -399,8 +397,6 @@ public class GpsMeasurement implements Parcelable { * * @return {@code true} if {@link #getPseudorangeRateInMetersPerSec()} contains a corrected * value, {@code false} if it contains an uncorrected value. - * - * @hide */ public boolean isPseudorangeRateCorrected() { return !isFlagSet(GPS_MEASUREMENT_HAS_UNCORRECTED_PSEUDORANGE_RATE); diff --git a/location/java/android/location/GpsNavigationMessage.java b/location/java/android/location/GpsNavigationMessage.java index 5b12a61..5c3c710 100644 --- a/location/java/android/location/GpsNavigationMessage.java +++ b/location/java/android/location/GpsNavigationMessage.java @@ -62,23 +62,17 @@ public class GpsNavigationMessage implements Parcelable { /** * The Navigation Message Status is 'unknown'. - * - * @hide */ public static final short STATUS_UNKNOWN = 0; /** * The Navigation Message was received without any parity error in its navigation words. - * - * @hide */ public static final short STATUS_PARITY_PASSED = (1<<0); /** * The Navigation Message was received with words that failed parity check, but the receiver was * able to correct those words. - * - * @hide */ public static final short STATUS_PARITY_REBUILT = (1<<1); @@ -220,8 +214,6 @@ public class GpsNavigationMessage implements Parcelable { /** * Gets the Status of the navigation message contained in the object. - * - * @hide */ public short getStatus() { return mStatus; @@ -229,8 +221,6 @@ public class GpsNavigationMessage implements Parcelable { /** * Sets the status of the navigation message. - * - * @hide */ public void setStatus(short value) { mStatus = value; |