mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
45 lines
1.3 KiB
Plaintext
45 lines
1.3 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/. */
|
|
|
|
/* Copyright © 2013 Deutsche Telekom, Inc. */
|
|
|
|
[NoInterfaceObject,
|
|
Func="Navigator::HasNfcManagerSupport"]
|
|
interface MozNfcManager {
|
|
/**
|
|
* API to check if the given application's manifest
|
|
* URL is registered with the Chrome Process or not.
|
|
*
|
|
* Returns success if given manifestUrl is registered for 'onpeerready',
|
|
* otherwise error
|
|
*
|
|
* Users of this API should have valid permissions 'nfc-manager'
|
|
* and 'nfc-write'
|
|
*/
|
|
DOMRequest checkP2PRegistration(DOMString manifestUrl);
|
|
};
|
|
|
|
[JSImplementation="@mozilla.org/navigatorNfc;1",
|
|
NavigatorProperty="mozNfc",
|
|
Func="Navigator::HasNfcSupport"]
|
|
interface MozNfc : EventTarget {
|
|
MozNFCTag getNFCTag(DOMString sessionId);
|
|
MozNFCPeer getNFCPeer(DOMString sessionId);
|
|
|
|
[Func="Navigator::HasNfcPeerSupport"]
|
|
attribute EventHandler onpeerready;
|
|
[Func="Navigator::HasNfcPeerSupport"]
|
|
attribute EventHandler onpeerlost;
|
|
};
|
|
|
|
// Mozilla Only
|
|
partial interface MozNfc {
|
|
[ChromeOnly]
|
|
void eventListenerWasAdded(DOMString aType);
|
|
[ChromeOnly]
|
|
void eventListenerWasRemoved(DOMString aType);
|
|
};
|
|
|
|
MozNfc implements MozNfcManager;
|