mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
5a622c4595
--HG-- rename : dom/interfaces/contacts/nsIDOMContactProperties.idl => dom/interfaces/contacts/nsIContactProperties.idl extra : rebase_source : 3581687c7285ed8e9c653d1d71f2b60837708679
40 lines
1.1 KiB
Plaintext
40 lines
1.1 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 "nsIContactProperties.idl"
|
|
#include "nsIDOMEventTarget.idl"
|
|
|
|
interface nsIArray;
|
|
interface nsIDOMDOMRequest;
|
|
interface nsIDOMDOMCursor;
|
|
|
|
[scriptable, uuid(72a5ee28-81d8-4af8-90b3-ae935396cc66)]
|
|
interface nsIDOMContact : nsIContactProperties
|
|
{
|
|
attribute DOMString id;
|
|
readonly attribute jsval published;
|
|
readonly attribute jsval updated;
|
|
|
|
void init(in nsIContactProperties properties); // Workaround BUG 723206
|
|
};
|
|
|
|
[scriptable, uuid(4efae3f8-dd69-4622-97c8-f16e4d38d95c)]
|
|
interface nsIDOMContactManager : nsISupports
|
|
{
|
|
nsIDOMDOMRequest find(in nsIContactFindOptions options);
|
|
|
|
nsIDOMDOMCursor getAll(in nsIContactFindSortOptions options);
|
|
|
|
nsIDOMDOMRequest clear();
|
|
|
|
nsIDOMDOMRequest save(in nsIDOMContact contact);
|
|
|
|
nsIDOMDOMRequest remove(in nsIDOMContact contact);
|
|
|
|
nsIDOMDOMRequest getSimContacts(in DOMString type);
|
|
|
|
attribute nsIDOMEventListener oncontactchange;
|
|
};
|