mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
869037482d
From b9ec1a996afb8d50d014e3e479a7c767df2555ac Mon Sep 17 00:00:00 2001 --- dom/nfc/gonk/Nfc.js | 14 +++++++------- dom/nfc/gonk/NfcMessageHandler.cpp | 10 +++++----- dom/nfc/gonk/NfcMessageHandler.h | 2 +- dom/nfc/gonk/NfcOptions.h | 18 +++++++++--------- dom/nfc/gonk/NfcService.cpp | 8 +++++++- dom/nfc/gonk/nfc_consts.js | 8 +++----- dom/webidl/NfcOptions.webidl | 10 ++++++++-- 7 files changed, 40 insertions(+), 30 deletions(-)
53 lines
928 B
Plaintext
53 lines
928 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/. */
|
|
|
|
enum RFState {
|
|
"idle",
|
|
"listen",
|
|
"discovery"
|
|
};
|
|
|
|
dictionary NfcCommandOptions
|
|
{
|
|
DOMString type = "";
|
|
|
|
long sessionId;
|
|
DOMString requestId = "";
|
|
|
|
RFState rfState;
|
|
|
|
long techType;
|
|
|
|
boolean isP2P;
|
|
sequence<MozNDEFRecordOptions> records;
|
|
};
|
|
|
|
dictionary NfcEventOptions
|
|
{
|
|
DOMString type = "";
|
|
|
|
long status;
|
|
NfcErrorMessage errorMsg;
|
|
long sessionId;
|
|
DOMString requestId;
|
|
|
|
long majorVersion;
|
|
long minorVersion;
|
|
|
|
sequence<NFCTechType> techList;
|
|
sequence<MozNDEFRecordOptions> records;
|
|
|
|
NFCTagType tagType;
|
|
long maxNDEFSize;
|
|
boolean isReadOnly;
|
|
boolean isFormatable;
|
|
|
|
RFState rfState;
|
|
|
|
// HCI Event Transaction fields
|
|
DOMString origin;
|
|
Uint8Array aid;
|
|
Uint8Array payload;
|
|
};
|