#include "device/bluetooth/test/mock_bluetooth_gatt_notify_session.h"
#include "base/functional/bind.h"
#include "device/bluetooth/test/mock_bluetooth_adapter.h"
#include "device/bluetooth/test/mock_bluetooth_gatt_characteristic.h"
Return;
namespace device {
MockBluetoothGattNotifySession::MockBluetoothGattNotifySession(
base::WeakPtr<BluetoothRemoteGattCharacteristic> characteristic)
: … { … }
MockBluetoothGattNotifySession::~MockBluetoothGattNotifySession() = default;
void MockBluetoothGattNotifySession::StartTestNotifications(
MockBluetoothAdapter* adapter,
MockBluetoothGattCharacteristic* characteristic,
const std::vector<uint8_t>& value) { … }
void MockBluetoothGattNotifySession::StopTestNotifications() { … }
void MockBluetoothGattNotifySession::DoNotify(
MockBluetoothAdapter* adapter,
MockBluetoothGattCharacteristic* characteristic,
const std::vector<uint8_t>& value) { … }
}