Closed
Bug 857005
Opened 12 years ago
Closed 7 years ago
WebSMS: provide nsIDOMMozMobileMessageManager.sendSMS(...)
Categories
(Core :: DOM: Device Interfaces, defect)
Tracking
()
RESOLVED
WONTFIX
People
(Reporter: airpingu, Unassigned)
References
Details
We need to provide a new interface for nsIDOMMozMobileMessageManager.sendSMS(...), which is proposed at bug 760065. In the future, we'll deprecate .mozSms and use .mozMobileMessage instead. Therefore, we cannot no longer use nsIDOMMozSmsManager.send(...) to send an SMS.
Let's change:
interface nsIDOMMozMobileMessageManager : nsIDOMEventTarget
{
jsval send(in jsval number, in DOMString message);
};
to:
dictionary SmsParameters
{
DOMString receiver;
DOMString text;
};
interface nsIDOMMozMobileMessageManager : nsIDOMEventTarget
{
nsIDOMDOMRequest sendSMS(in jsval parameters /*SmsParameters*/);
};
Updated•11 years ago
|
OS: Linux → Gonk (Firefox OS)
Hardware: x86_64 → ARM
Summary: B2G SMS & MMS: provide nsIDOMMozMobileMessageManager.sendSMS(...) → WebSMS: provide nsIDOMMozMobileMessageManager.sendSMS(...)
Updated•7 years ago
|
Status: NEW → RESOLVED
Closed: 7 years ago
Resolution: --- → WONTFIX
Updated•7 years ago
|
Keywords: dev-doc-needed
You need to log in
before you can comment on or make changes to this bug.
Description
•