mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
5ed0bc7608
From 5289124d435e3eed280c8a1728b55ab005ac0aae Mon Sep 17 00:00:00 2001 --- dom/nfc/MozNDEFRecord.cpp | 40 ++++++++++++++++++++++++++++++++++++++++ dom/nfc/MozNDEFRecord.h | 3 +++ 2 files changed, 43 insertions(+)
105 lines
2.4 KiB
C++
105 lines
2.4 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim:set ts=2 sw=2 sts=2 et cindent: */
|
|
/* 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. */
|
|
|
|
#ifndef mozilla_dom_MozNDEFRecord_h__
|
|
#define mozilla_dom_MozNDEFRecord_h__
|
|
|
|
#include "mozilla/Attributes.h"
|
|
#include "mozilla/ErrorResult.h"
|
|
#include "nsCycleCollectionParticipant.h"
|
|
#include "nsWrapperCache.h"
|
|
#include "jsapi.h"
|
|
|
|
#include "mozilla/dom/MozNDEFRecordBinding.h"
|
|
#include "mozilla/dom/TypedArray.h"
|
|
#include "jsfriendapi.h"
|
|
#include "js/GCAPI.h"
|
|
#include "nsPIDOMWindow.h"
|
|
|
|
struct JSContext;
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
class MozNDEFRecordOptions;
|
|
|
|
class MozNDEFRecord MOZ_FINAL : public nsISupports,
|
|
public nsWrapperCache
|
|
{
|
|
public:
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(MozNDEFRecord)
|
|
|
|
public:
|
|
|
|
MozNDEFRecord(JSContext* aCx, nsPIDOMWindow* aWindow,
|
|
const MozNDEFRecordOptions& aOptions);
|
|
|
|
~MozNDEFRecord();
|
|
|
|
nsIDOMWindow* GetParentObject() const
|
|
{
|
|
return mWindow;
|
|
}
|
|
|
|
virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE;
|
|
|
|
static already_AddRefed<MozNDEFRecord>
|
|
Constructor(const GlobalObject& aGlobal,
|
|
const MozNDEFRecordOptions& aOptions,
|
|
ErrorResult& aRv);
|
|
|
|
TNF Tnf() const
|
|
{
|
|
return mTnf;
|
|
}
|
|
|
|
void GetType(JSContext* cx, JS::MutableHandle<JSObject*> retval) const
|
|
{
|
|
if (mType) {
|
|
JS::ExposeObjectToActiveJS(mType);
|
|
}
|
|
retval.set(mType);
|
|
}
|
|
|
|
void GetId(JSContext* cx, JS::MutableHandle<JSObject*> retval) const
|
|
{
|
|
if (mId) {
|
|
JS::ExposeObjectToActiveJS(mId);
|
|
}
|
|
retval.set(mId);
|
|
}
|
|
|
|
void GetPayload(JSContext* cx, JS::MutableHandle<JSObject*> retval) const
|
|
{
|
|
if (mPayload) {
|
|
JS::ExposeObjectToActiveJS(mPayload);
|
|
}
|
|
retval.set(mPayload);
|
|
}
|
|
|
|
private:
|
|
MozNDEFRecord() MOZ_DELETE;
|
|
nsRefPtr<nsPIDOMWindow> mWindow;
|
|
void HoldData();
|
|
void DropData();
|
|
|
|
static bool
|
|
ValidateTNF(const MozNDEFRecordOptions& aOptions, ErrorResult& aRv);
|
|
|
|
TNF mTnf;
|
|
JS::Heap<JSObject*> mType;
|
|
JS::Heap<JSObject*> mId;
|
|
JS::Heap<JSObject*> mPayload;
|
|
};
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_dom_MozNDEFRecord_h__
|