/* -*- 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/. */ #ifndef mozilla_dom_bluetooth_BluetoothLeDeviceEvent_h #define mozilla_dom_bluetooth_BluetoothLeDeviceEvent_h #include "mozilla/Attributes.h" #include "mozilla/ErrorResult.h" #include "mozilla/dom/BluetoothLeDeviceEventBinding.h" #include "mozilla/dom/Event.h" #include "mozilla/dom/bluetooth/BluetoothCommon.h" BEGIN_BLUETOOTH_NAMESPACE class BluetoothLeDeviceEvent : public Event { public: NS_DECL_ISUPPORTS_INHERITED NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS_INHERITED(BluetoothLeDeviceEvent, Event) protected: virtual ~BluetoothLeDeviceEvent(); explicit BluetoothLeDeviceEvent(mozilla::dom::EventTarget* aOwner); RefPtr mDevice; int16_t mRssi; JS::Heap mScanRecord; public: virtual JSObject* WrapObjectInternal( JSContext* aCx, JS::Handle aGivenProto) override; static already_AddRefed Constructor(EventTarget* aOwner, const nsAString& aType, BluetoothDevice* const aDevice, const int16_t aRssi, const nsTArray& aScanRecord); static already_AddRefed Constructor(const GlobalObject& aGlobal, const nsAString& aType, const BluetoothLeDeviceEventInit& aEventInitDict, ErrorResult& aRv); BluetoothDevice* GetDevice() const; int16_t Rssi() const; void GetScanRecord(JSContext* cx, JS::MutableHandle aScanRecord, ErrorResult& aRv); private: nsTArray mRawScanRecord; }; END_BLUETOOTH_NAMESPACE #endif // mozilla_dom_bluetooth_BluetoothLeDeviceEvent_h