author | Nathan Froyd <froydnj@mozilla.com> |
Tue, 21 Feb 2012 13:08:06 -0800 | |
changeset 87720 | bfb77404379566df76f9340db3ace52e7f179c0c |
parent 87719 | 27322e24bd01e02cb9c1f83692b4219db7ad881d |
child 87721 | b223156c76a4e00336af57762a4d46ab62caf4bc |
push id | 22143 |
push user | philringnalda@gmail.com |
push date | Sun, 26 Feb 2012 23:12:35 +0000 |
treeherder | mozilla-central@b98fc24ac54b [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | mounir |
bugs | 729269 |
milestone | 13.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/dom/sms/interfaces/nsIDOMSmsManager.idl +++ b/dom/sms/interfaces/nsIDOMSmsManager.idl @@ -35,17 +35,17 @@ * ***** END LICENSE BLOCK ***** */ #include "nsIDOMEventTarget.idl" interface nsIDOMEventListener; interface nsIDOMMozSmsRequest; interface nsIDOMMozSmsFilter; -[scriptable, function, uuid(c9916dce-2947-41bb-95c2-818f792a020c)] +[scriptable, uuid(c9916dce-2947-41bb-95c2-818f792a020c)] 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.
--- a/dom/sms/interfaces/nsIDOMSmsRequest.idl +++ b/dom/sms/interfaces/nsIDOMSmsRequest.idl @@ -33,17 +33,17 @@ * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ #include "nsIDOMEventTarget.idl" interface nsIDOMEventListener; -[scriptable, function, uuid(1b24469d-cfb7-4667-aaf0-c1d17289ae7c)] +[scriptable, uuid(1b24469d-cfb7-4667-aaf0-c1d17289ae7c)] interface nsIDOMMozSmsRequest : nsIDOMEventTarget { // Returns whether "processing" or "done". readonly attribute DOMString readyState; // Can be null. readonly attribute DOMString error; // Can be bool, nsIDOMSmsMessage, nsIDOMSmsIterator or null. readonly attribute jsval result;
--- a/dom/sms/interfaces/nsISmsDatabaseService.idl +++ b/dom/sms/interfaces/nsISmsDatabaseService.idl @@ -40,17 +40,17 @@ #define SMS_DATABASE_SERVICE_CID \ { 0x2454c2a1, 0xefdd, 0x4d96, \ { 0x83, 0xbd, 0x51, 0xa2, 0x9a, 0x21, 0xf5, 0xab } } #define SMS_DATABASE_SERVICE_CONTRACTID "@mozilla.org/sms/smsdatabaseservice;1" %} interface nsIDOMMozSmsFilter; -[scriptable, function, uuid(86b3b538-359d-40b0-acdf-8dfd698ff117)] +[scriptable, uuid(86b3b538-359d-40b0-acdf-8dfd698ff117)] interface nsISmsDatabaseService : nsISupports { // Takes some information required to save the message and returns its id. long saveReceivedMessage(in DOMString aSender, in DOMString aBody, in unsigned long long aDate); // Takes some information required to save the message and returns its id. long saveSentMessage(in DOMString aReceiver, in DOMString aBody, in unsigned long long aDate); [binaryname(GetMessageMoz)] void getMessage(in long messageId, in long requestId, [optional] in unsigned long long processId);