Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8b40176e authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 6875707 from 0c52a760 to rvc-qpr1-release

Change-Id: Iba131a070eda4b202dcae75a89ee2758227e5704
parents f5a8542b 0c52a760
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -25434,7 +25434,7 @@ public class PackageManagerService extends IPackageManager.Stub
        // This API is exposed temporarily to only the contacts provider. (b/158688602)
        final int callingUid = Binder.getCallingUid();
        ProviderInfo contactsProvider = resolveContentProviderInternal(
                        ContactsContract.AUTHORITY, 0, UserHandle.USER_SYSTEM);
                        ContactsContract.AUTHORITY, 0, UserHandle.getUserId(callingUid));
        if (contactsProvider == null || contactsProvider.applicationInfo == null
                || !UserHandle.isSameApp(contactsProvider.applicationInfo.uid, callingUid)) {
            throw new SecurityException(callingUid + " is not allow to call grantImplicitAccess");
+5 −2
Original line number Diff line number Diff line
@@ -27,8 +27,11 @@ import com.android.ims.internal.IImsCallSession;
 * See MmTelFeature#Listener for more information.
 * {@hide}
 */
oneway interface IImsMmTelListener {
 // This interface is not considered oneway because we need to ensure that these operations are
 // processed by telephony before the control flow returns to the ImsService to perform
 // operations on the IImsCallSession.
interface IImsMmTelListener {
    void onIncomingCall(IImsCallSession c, in Bundle extras);
    void onRejectedCall(in ImsCallProfile callProfile, in ImsReasonInfo reason);
    void onVoiceMessageCountUpdate(int count);
    oneway void onVoiceMessageCountUpdate(int count);
}