mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
70 lines
1.8 KiB
C++
70 lines
1.8 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/. */
|
|
|
|
#ifndef mozilla_dom_bluetooth_bluetoothpairinghandle_h
|
|
#define mozilla_dom_bluetooth_bluetoothpairinghandle_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<BluetoothPairingHandle>
|
|
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<Promise>
|
|
SetPinCode(const nsAString& aPinCode, ErrorResult& aRv);
|
|
|
|
already_AddRefed<Promise>
|
|
SetPairingConfirmation(bool aConfirm, ErrorResult& aRv);
|
|
|
|
private:
|
|
BluetoothPairingHandle(nsPIDOMWindow* aOwner,
|
|
const nsAString& aDeviceAddress,
|
|
const nsAString& aType,
|
|
const nsAString& aPasskey);
|
|
~BluetoothPairingHandle();
|
|
|
|
nsCOMPtr<nsPIDOMWindow> mOwner;
|
|
nsString mDeviceAddress;
|
|
nsString mType;
|
|
nsString mPasskey;
|
|
};
|
|
|
|
END_BLUETOOTH_NAMESPACE
|
|
|
|
#endif // mozilla_dom_bluetooth_bluetoothpairinghandle_h
|