mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
69 lines
2.9 KiB
Plaintext
69 lines
2.9 KiB
Plaintext
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "domstubs.idl"
|
|
#include "nsISupports.idl"
|
|
#include "nsIMobileMessageDatabaseService.idl"
|
|
|
|
[scriptable, function, uuid(92986322-8d56-11e2-8816-73a531c493c2)]
|
|
interface nsIRilMobileMessageDatabaseCallback : nsISupports
|
|
{
|
|
/**
|
|
* |aDomMessage|: the nsIDOMMoz{Mms,Sms}Message
|
|
*/
|
|
void notify(in nsresult aRv, in nsISupports aDomMessage);
|
|
};
|
|
|
|
[scriptable, uuid(a31b1716-8631-11e2-afaa-2fbd087f426e)]
|
|
interface nsIRilMobileMessageDatabaseService : nsIMobileMessageDatabaseService
|
|
{
|
|
/**
|
|
* |aMessage| Object: should contain the following properties for internal use:
|
|
* - |type| DOMString: "sms" or "mms"
|
|
* - |sender| DOMString: the phone number of sender
|
|
* - |timestamp| Number: the timestamp of received message
|
|
*
|
|
* - If |type| == "sms", we also need:
|
|
* - |messageClass| DOMString: the message class of received message
|
|
*
|
|
* - If |type| == "mms", we also need:
|
|
* - |delivery| DOMString: the delivery state of received message
|
|
* - |deliveryStatus| DOMString Array: the delivery status of received message
|
|
* - |receivers| DOMString Array: the phone numbers of receivers
|
|
*
|
|
* Note: |deliveryStatus| should only contain single string to specify
|
|
* the delivery status of MMS message for the phone owner self.
|
|
*/
|
|
long saveReceivedMessage(in jsval aMessage,
|
|
[optional] in nsIRilMobileMessageDatabaseCallback aCallback);
|
|
|
|
/**
|
|
* |aMessage| Object: should contain the following properties for internal use:
|
|
* - |type| DOMString: "sms" or "mms"
|
|
* - |timestamp| Number: the timestamp of sending message
|
|
* - |deliveryStatusRequested| Bool: true when the delivery report is requested.
|
|
*
|
|
* - If |type| == "sms", we also need:
|
|
* - |receiver| DOMString: the phone number of receiver
|
|
*
|
|
* - If |type| == "mms", we also need:
|
|
* - |receivers| DOMString Array: the phone numbers of receivers
|
|
*/
|
|
long saveSendingMessage(in jsval aMessage,
|
|
[optional] in nsIRilMobileMessageDatabaseCallback aCallback);
|
|
|
|
/**
|
|
* |aMessageId| Number: the message's DB record ID.
|
|
* |aReceiver| DOMString: the phone number of receiver (for MMS; can be null).
|
|
* |aDelivery| DOMString: the new delivery value to update (can be null).
|
|
* |aDeliveryStatus| DOMString: the new delivery status to update (can be null).
|
|
* |aCallback| nsIRilMobileMessageDatabaseCallback: an optional callback.
|
|
*/
|
|
void setMessageDelivery(in long aMessageId,
|
|
in DOMString aReceiver,
|
|
in DOMString aDelivery,
|
|
in DOMString aDeliveryStatus,
|
|
[optional] in nsIRilMobileMessageDatabaseCallback aCallback);
|
|
};
|