#ifndef DEVICE_BLUETOOTH_EMULATION_FAKE_CENTRAL_H_
#define DEVICE_BLUETOOTH_EMULATION_FAKE_CENTRAL_H_
#include <memory>
#include <string>
#include <vector>
#include "base/compiler_specific.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "device/bluetooth/bluetooth_adapter.h"
#include "device/bluetooth/public/mojom/emulation/fake_bluetooth.mojom.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/receiver.h"
#if BUILDFLAG(IS_CHROMEOS)
#include "device/bluetooth/bluetooth_low_energy_scan_filter.h"
#include "device/bluetooth/bluetooth_low_energy_scan_session.h"
#endif
namespace bluetooth {
class FakePeripheral;
class FakeRemoteGattCharacteristic;
class FakeRemoteGattDescriptor;
class FakeRemoteGattService;
class FakeCentral final : public mojom::FakeCentral,
public device::BluetoothAdapter { … };
}
#endif