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

Commit 698a68b6 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "Add AppOps check for sendTextWithPriority"

parents 3882c5d5 5eff658f
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -121,7 +121,7 @@ interface ISms {
            in PendingIntent sentIntent, in PendingIntent deliveryIntent);

    /**
     * Send an SMS.
     * Send an SMS with priority.
     *
     * @param destAddr the address to send the message to
     * @param smsc the SMSC to send the message through, or NULL for the
@@ -145,8 +145,8 @@ interface ISms {
     *  raw pdu of the status report is in the extended data ("pdu").
     * @param priority Priority level of the message
     */
    void sendTextWithPriority(in String destAddr, in String scAddr, in String text,
            in PendingIntent sentIntent, in PendingIntent deliveryIntent,
    void sendTextWithPriority(String callingPkg, in String destAddr, in String scAddr,
            in String text, in PendingIntent sentIntent, in PendingIntent deliveryIntent,
            in int priority);

    /**