mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-30 05:35:31 +00:00
36 lines
1.3 KiB
Plaintext
36 lines
1.3 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 "nsIDOMEventTarget.idl"
|
|
|
|
interface nsIDOMEventListener;
|
|
interface nsIDOMMozSmsRequest;
|
|
interface nsIDOMMozSmsFilter;
|
|
|
|
[scriptable, builtinclass, uuid(1bee1224-56a2-4935-af7b-0011746306cb)]
|
|
interface nsIDOMMozSmsManager : nsIDOMEventTarget
|
|
{
|
|
unsigned short getNumberOfMessagesForText(in DOMString text);
|
|
|
|
// The first parameter can be either a DOMString (only one number) or an array
|
|
// of DOMStrings.
|
|
// The method returns a SmsRequest object if one number has been passed.
|
|
// An array of SmsRequest objects otherwise.
|
|
jsval send(in jsval number, in DOMString message);
|
|
|
|
[binaryname(GetMessageMoz)] nsIDOMMozSmsRequest getMessage(in long id);
|
|
|
|
// The parameter can be either a message id or a SmsMessage.
|
|
nsIDOMMozSmsRequest delete(in jsval param);
|
|
|
|
nsIDOMMozSmsRequest getMessages(in nsIDOMMozSmsFilter filter, in boolean reverse);
|
|
|
|
nsIDOMMozSmsRequest markMessageRead(in long id, in boolean aValue);
|
|
|
|
[implicit_jscontext] attribute jsval onreceived;
|
|
[implicit_jscontext] attribute jsval onsent;
|
|
[implicit_jscontext] attribute jsval ondeliverysuccess;
|
|
[implicit_jscontext] attribute jsval ondeliveryerror;
|
|
};
|