mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
d9f995c397
--HG-- extra : rebase_source : b36e856f9fd85155096f88cb0c8ad41038052a25
42 lines
1.1 KiB
Plaintext
42 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(7bfb6481-f946-4254-afc5-d7fe9f5c45a3)]
|
|
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;
|
|
|
|
nsIDOMDOMRequest getRevision();
|
|
};
|