Check permissions on getDeviceId. DO NOT MERGE

This needs the package name passed in, so the aidl changes.

bug:25778215
Change-Id: I69ee88f1d2db614bad51e6de908d3f16881a0231
This commit is contained in:
Robert Greenwalt
2015-12-04 11:51:49 -08:00
parent 9e4d4143cf
commit a2590b5e7f
2 changed files with 3 additions and 3 deletions

View File

@@ -766,7 +766,7 @@ public class TelephonyManager {
IPhoneSubInfo info = getSubscriberInfo();
if (info == null)
return null;
return info.getDeviceIdForPhone(slotId);
return info.getDeviceIdForPhone(slotId, mContext.getOpPackageName());
} catch (RemoteException ex) {
return null;
} catch (NullPointerException ex) {
@@ -4865,4 +4865,4 @@ public class TelephonyManager {
}
return null;
}
}
}

View File

@@ -36,7 +36,7 @@ interface IPhoneSubInfo {
* Retrieves the unique device ID of a phone for the device, e.g., IMEI
* for GSM phones.
*/
String getDeviceIdForPhone(int phoneId);
String getDeviceIdForPhone(int phoneId, String callingPackage);
/**
* Retrieves the IMEI.