mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
625122c983
--HG-- rename : dom/nfc/MozNdefRecord.cpp => dom/nfc/MozNDEFRecord.cpp rename : dom/nfc/MozNdefRecord.h => dom/nfc/MozNDEFRecord.h rename : dom/webidl/MozNdefRecord.webidl => dom/webidl/MozNDEFRecord.webidl
108 lines
2.5 KiB
C++
108 lines
2.5 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 "nsIDocument.h"
|
|
|
|
#include "mozilla/dom/TypedArray.h"
|
|
#include "jsfriendapi.h"
|
|
#include "js/GCAPI.h"
|
|
|
|
struct JSContext;
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
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, uint8_t aTnf,
|
|
const Uint8Array& aType, const Uint8Array& aId,
|
|
const Uint8Array& aPlayload);
|
|
|
|
~MozNDEFRecord();
|
|
|
|
nsIDOMWindow* GetParentObject() const
|
|
{
|
|
return mWindow;
|
|
}
|
|
|
|
virtual JSObject* WrapObject(JSContext* aCx,
|
|
JS::Handle<JSObject*> aScope) MOZ_OVERRIDE;
|
|
|
|
static already_AddRefed<MozNDEFRecord>
|
|
Constructor(const GlobalObject& aGlobal, uint8_t aTnf,
|
|
const Uint8Array& aType, const Uint8Array& aId,
|
|
const Uint8Array& aPayload, ErrorResult& aRv);
|
|
|
|
uint8_t Tnf() const
|
|
{
|
|
return mTnf;
|
|
}
|
|
|
|
JSObject* Type(JSContext* cx) const
|
|
{
|
|
return GetTypeObject();
|
|
}
|
|
JSObject* GetTypeObject() const
|
|
{
|
|
JS::ExposeObjectToActiveJS(mType);
|
|
return mType;
|
|
}
|
|
|
|
JSObject* Id(JSContext* cx) const
|
|
{
|
|
return GetIdObject();
|
|
}
|
|
JSObject* GetIdObject() const
|
|
{
|
|
JS::ExposeObjectToActiveJS(mId);
|
|
return mId;
|
|
}
|
|
|
|
JSObject* Payload(JSContext* cx) const
|
|
{
|
|
return GetPayloadObject();
|
|
}
|
|
JSObject* GetPayloadObject() const
|
|
{
|
|
JS::ExposeObjectToActiveJS(mPayload);
|
|
return mPayload;
|
|
}
|
|
|
|
private:
|
|
MozNDEFRecord() MOZ_DELETE;
|
|
nsRefPtr<nsPIDOMWindow> mWindow;
|
|
void HoldData();
|
|
void DropData();
|
|
|
|
uint8_t mTnf;
|
|
JS::Heap<JSObject*> mType;
|
|
JS::Heap<JSObject*> mId;
|
|
JS::Heap<JSObject*> mPayload;
|
|
};
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_dom_MozNDEFRecord_h__
|