diff options
| author | Ye Wen <ywen@google.com> | 2014-09-04 15:36:11 -0700 |
|---|---|---|
| committer | Ye Wen <ywen@google.com> | 2014-09-04 15:41:56 -0700 |
| commit | 8179c2a6e47fca18a12275166065e36790eec083 (patch) | |
| tree | 76dd0734dc21e19fae97403f69d6c7382f5ce042 /telephony | |
| parent | c50e7e847702897b7087bc59cac77c1b78b57f32 (diff) | |
| download | frameworks_base-8179c2a6e47fca18a12275166065e36790eec083.zip frameworks_base-8179c2a6e47fca18a12275166065e36790eec083.tar.gz frameworks_base-8179c2a6e47fca18a12275166065e36790eec083.tar.bz2 | |
MMS API cleanup (1/4)
- Hide APIs not approved by API council (b/17189780)
- Change configOverrides in MMS APIs from ContentValues to Bundle to be
consistent (b/17390017)
- Change SmsManager.MMS_EXTRA_DATA to EXTRA_MMS_DATA per API council
review (b/17390977)
b/17189780
b/17390017
b/17390977
Change-Id: If5a43e9ab9e42b6328f1581b39051ddf1a58f0dd
Diffstat (limited to 'telephony')
| -rw-r--r-- | telephony/java/com/android/internal/telephony/IMms.aidl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/telephony/java/com/android/internal/telephony/IMms.aidl b/telephony/java/com/android/internal/telephony/IMms.aidl index 63b7a53..4337012 100644 --- a/telephony/java/com/android/internal/telephony/IMms.aidl +++ b/telephony/java/com/android/internal/telephony/IMms.aidl @@ -40,7 +40,7 @@ interface IMms { * broadcast when the message is successfully sent, or failed */ void sendMessage(long subId, String callingPkg, in Uri contentUri, - String locationUrl, in ContentValues configOverrides, in PendingIntent sentIntent); + String locationUrl, in Bundle configOverrides, in PendingIntent sentIntent); /** * Download an MMS message using known location and transaction id @@ -57,7 +57,7 @@ interface IMms { * broadcast when the message is downloaded, or the download is failed */ void downloadMessage(long subId, String callingPkg, String locationUrl, - in Uri contentUri, in ContentValues configOverrides, + in Uri contentUri, in Bundle configOverrides, in PendingIntent downloadedIntent); /** @@ -192,7 +192,7 @@ interface IMms { * broadcast when the message is successfully sent, or failed */ void sendStoredMessage(long subId, String callingPkg, in Uri messageUri, - in ContentValues configOverrides, in PendingIntent sentIntent); + in Bundle configOverrides, in PendingIntent sentIntent); /** * Turns on/off the flag to automatically write sent/received SMS/MMS messages into system |
