#ifndef DEVICE_BLUETOOTH_FLOSS_FLOSS_LESCAN_CLIENT_H_
#define DEVICE_BLUETOOTH_FLOSS_FLOSS_LESCAN_CLIENT_H_
#include <memory>
#include <string>
#include "base/containers/queue.h"
#include "base/functional/callback.h"
#include "base/gtest_prod_util.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/observer_list.h"
#include "dbus/exported_object.h"
#include "dbus/object_path.h"
#include "device/bluetooth/bluetooth_device.h"
#include "device/bluetooth/bluetooth_export.h"
#include "device/bluetooth/floss/exported_callback_manager.h"
#include "device/bluetooth/floss/floss_dbus_client.h"
#include "device/bluetooth/floss/floss_gatt_manager_client.h"
namespace dbus {
class ObjectPath;
}
namespace floss {
const char kScannerCallbackPath[] = …"/org/chromium/bluetooth/scanner/callback/lacros";
#else
"/org/chromium/bluetooth/scanner/callback";
#endif
const char kScannerCallbackInterfaceName[] = …;
const char kEmptyUuidStr[] = …;
enum class ScanType { … };
struct ScanSettings { … };
struct DEVICE_BLUETOOTH_EXPORT ScanFilterPattern { … };
struct DEVICE_BLUETOOTH_EXPORT ScanFilterCondition { … };
struct DEVICE_BLUETOOTH_EXPORT ScanFilter { … };
struct DEVICE_BLUETOOTH_EXPORT ScanResult { … };
class ScannerClientObserver : public base::CheckedObserver { … };
class DEVICE_BLUETOOTH_EXPORT FlossLEScanClient : public FlossDBusClient,
public ScannerClientObserver { … };
}
#endif