gecko-dev/dom/webidl/MozNfcATech.webidl
Thomas Nguyen 57dcb65bb0 Bug 976457 - B2G NFC: API for supporting NFC_A tags. r=yoshi r=smaug
--HG--
extra : rebase_source : 5932773c51d7b77f67104ef2255ffff8d4c6d0ee
2015-11-13 02:01:00 +01:00

14 lines
470 B
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/. */
[Func="Navigator::HasNFCSupport", AvailableIn="PrivilegedApps",
ChromeConstructor(MozNFCTag tag)]
interface MozNfcATech {
/**
* Send raw NFC-A command to tag and receive the response.
*/
[Throws]
Promise<Uint8Array> transceive(Uint8Array command);
};