mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
a1f41b2ca9
The files BluetoothHALInterface.{cpp,h} are getting too large. This patch moves helper functions and profile implementations into separate files.
45 lines
1.3 KiB
C++
45 lines
1.3 KiB
C++
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
|
/* vim: set ts=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_bluedroid_bluetootha2dphalinterface_h__
|
|
#define mozilla_dom_bluetooth_bluedroid_bluetootha2dphalinterface_h__
|
|
|
|
#include <hardware/bluetooth.h>
|
|
#include <hardware/bt_av.h>
|
|
#include "BluetoothCommon.h"
|
|
#include "BluetoothInterface.h"
|
|
|
|
BEGIN_BLUETOOTH_NAMESPACE
|
|
|
|
class BluetoothHALInterface;
|
|
|
|
class BluetoothA2dpHALInterface MOZ_FINAL
|
|
: public BluetoothA2dpInterface
|
|
{
|
|
public:
|
|
friend class BluetoothHALInterface;
|
|
|
|
void Init(BluetoothA2dpNotificationHandler* aNotificationHandler,
|
|
BluetoothA2dpResultHandler* aRes);
|
|
void Cleanup(BluetoothA2dpResultHandler* aRes);
|
|
|
|
void Connect(const nsAString& aBdAddr,
|
|
BluetoothA2dpResultHandler* aRes);
|
|
void Disconnect(const nsAString& aBdAddr,
|
|
BluetoothA2dpResultHandler* aRes);
|
|
|
|
protected:
|
|
BluetoothA2dpHALInterface(const btav_interface_t* aInterface);
|
|
~BluetoothA2dpHALInterface();
|
|
|
|
private:
|
|
const btav_interface_t* mInterface;
|
|
};
|
|
|
|
END_BLUETOOTH_NAMESPACE
|
|
|
|
#endif
|