Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this file, |
michael@0 | 3 | * You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | #include "nsISupports.idl" |
michael@0 | 6 | interface nsIMobileMessageCallback; |
michael@0 | 7 | interface nsIDOMBlob; |
michael@0 | 8 | |
michael@0 | 9 | %{C++ |
michael@0 | 10 | #define MMS_SERVICE_CID { 0x06d9124b, 0x80e0, 0x40ed, \ |
michael@0 | 11 | { 0x98, 0x71, 0x4d, 0x23, 0x4a, 0x0f, 0xd4, 0x31 } } |
michael@0 | 12 | #define MMS_SERVICE_CONTRACTID "@mozilla.org/mms/mmsservice;1" |
michael@0 | 13 | %} |
michael@0 | 14 | |
michael@0 | 15 | [scriptable, uuid(543278b3-d926-4c65-84b8-b49ad7a17d21)] |
michael@0 | 16 | interface nsIMmsService : nsISupports |
michael@0 | 17 | { |
michael@0 | 18 | readonly attribute unsigned long mmsDefaultServiceId; |
michael@0 | 19 | |
michael@0 | 20 | void send(in unsigned long serviceId, |
michael@0 | 21 | in jsval parameters /* MmsParameters */, |
michael@0 | 22 | in nsIMobileMessageCallback request); |
michael@0 | 23 | |
michael@0 | 24 | void retrieve(in long id, |
michael@0 | 25 | in nsIMobileMessageCallback request); |
michael@0 | 26 | |
michael@0 | 27 | void sendReadReport(in DOMString messageID, |
michael@0 | 28 | in DOMString toAddress, |
michael@0 | 29 | in DOMString iccId); |
michael@0 | 30 | }; |