/* -*- 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_bluetoothpairinghandle_h #define mozilla_dom_bluetooth_bluetoothpairinghandle_h #include "BluetoothCommon.h" #include "nsWrapperCache.h" namespace mozilla { class ErrorResult; namespace dom { class Promise; } } BEGIN_BLUETOOTH_NAMESPACE class BluetoothDevice; class BluetoothPairingHandle MOZ_FINAL : public nsISupports, public nsWrapperCache { public: NS_DECL_CYCLE_COLLECTING_ISUPPORTS NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(BluetoothPairingHandle) static already_AddRefed Create(nsPIDOMWindow* aOwner, const nsAString& aDeviceAddress, const nsAString& aType, const nsAString& aPasskey); nsPIDOMWindow* GetParentObject() const { return mOwner; } virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE; void GetPasskey(nsString& aPasskey) const { aPasskey = mPasskey; } already_AddRefed SetPinCode(const nsAString& aPinCode, ErrorResult& aRv); already_AddRefed SetPairingConfirmation(bool aConfirm, ErrorResult& aRv); private: BluetoothPairingHandle(nsPIDOMWindow* aOwner, const nsAString& aDeviceAddress, const nsAString& aType, const nsAString& aPasskey); ~BluetoothPairingHandle(); nsCOMPtr mOwner; nsString mDeviceAddress; nsString mType; nsString mPasskey; }; END_BLUETOOTH_NAMESPACE #endif // mozilla_dom_bluetooth_bluetoothpairinghandle_h