Finalized GPS=>GNSS changes with documents

Bug: 27098594
Change-Id: I24529e60d8eb9b48b644cf01e5efc684e6f04839
This commit is contained in:
Lifu Tang
2016-02-16 18:07:00 -08:00
parent f79c887c59
commit 9363b949a1
13 changed files with 395 additions and 335 deletions

View File

@@ -1959,11 +1959,11 @@ public class LocationManager {
* @hide
*/
@TestApi
public int getGpsYearOfHardware() {
public int getGnssYearOfHardware() {
try {
return mService.getGpsYearOfHardware();
return mService.getGnssYearOfHardware();
} catch (RemoteException e) {
Log.e(TAG, "RemoteException in getGpsSystemInfo: ", e);
Log.e(TAG, "RemoteException in getGnssSystemInfo: ", e);
return 0;
}
}