mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-30 13:45:27 +00:00
8ddbe69e4f
--HG-- rename : dom/bluetooth/BluetoothCommon.h => dom/bluetooth/common/BluetoothCommon.h rename : dom/bluetooth/BluetoothHfpManagerBase.h => dom/bluetooth/common/BluetoothHfpManagerBase.h rename : dom/bluetooth/BluetoothHidManager.cpp => dom/bluetooth/common/BluetoothHidManager.cpp rename : dom/bluetooth/BluetoothHidManager.h => dom/bluetooth/common/BluetoothHidManager.h rename : dom/bluetooth/BluetoothInterface.cpp => dom/bluetooth/common/BluetoothInterface.cpp rename : dom/bluetooth/BluetoothInterface.h => dom/bluetooth/common/BluetoothInterface.h rename : dom/bluetooth/BluetoothPbapRequestHandle.cpp => dom/bluetooth/common/BluetoothPbapRequestHandle.cpp rename : dom/bluetooth/BluetoothPbapRequestHandle.h => dom/bluetooth/common/BluetoothPbapRequestHandle.h rename : dom/bluetooth/BluetoothProfileManagerBase.h => dom/bluetooth/common/BluetoothProfileManagerBase.h rename : dom/bluetooth/BluetoothRilListener.cpp => dom/bluetooth/common/BluetoothRilListener.cpp rename : dom/bluetooth/BluetoothRilListener.h => dom/bluetooth/common/BluetoothRilListener.h rename : dom/bluetooth/BluetoothSocketObserver.h => dom/bluetooth/common/BluetoothSocketObserver.h rename : dom/bluetooth/BluetoothUtils.cpp => dom/bluetooth/common/BluetoothUtils.cpp rename : dom/bluetooth/BluetoothUtils.h => dom/bluetooth/common/BluetoothUtils.h rename : dom/bluetooth/BluetoothUuid.cpp => dom/bluetooth/common/BluetoothUuid.cpp rename : dom/bluetooth/BluetoothUuid.h => dom/bluetooth/common/BluetoothUuid.h rename : dom/bluetooth/ObexBase.cpp => dom/bluetooth/common/ObexBase.cpp rename : dom/bluetooth/ObexBase.h => dom/bluetooth/common/ObexBase.h
33 lines
998 B
C++
33 lines
998 B
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* 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_bluetoothhfpmanagerbase_h__
|
|
#define mozilla_dom_bluetooth_bluetoothhfpmanagerbase_h__
|
|
|
|
#include "BluetoothProfileManagerBase.h"
|
|
|
|
BEGIN_BLUETOOTH_NAMESPACE
|
|
|
|
class BluetoothHfpManagerBase : public BluetoothProfileManagerBase
|
|
{
|
|
public:
|
|
/**
|
|
* Returns true if Sco is connected.
|
|
*/
|
|
virtual bool IsScoConnected() = 0;
|
|
|
|
virtual bool IsNrecEnabled() = 0;
|
|
};
|
|
|
|
#define BT_DECL_HFP_MGR_BASE \
|
|
BT_DECL_PROFILE_MGR_BASE \
|
|
virtual bool IsScoConnected() override; \
|
|
virtual bool IsNrecEnabled() override;
|
|
|
|
END_BLUETOOTH_NAMESPACE
|
|
|
|
#endif //#ifndef mozilla_dom_bluetooth_bluetoothhfpmanagerbase_h__
|