#ifndef DEVICE_BLUETOOTH_FLOSS_FLOSS_MANAGER_CLIENT_H_
#define DEVICE_BLUETOOTH_FLOSS_FLOSS_MANAGER_CLIENT_H_
#include <memory>
#include <vector>
#include "base/containers/flat_map.h"
#include "base/containers/flat_set.h"
#include "base/functional/callback.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_manager.h"
#include "dbus/object_path.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_version.h"
namespace dbus {
class PropertySet;
}
namespace floss {
namespace internal {
struct AdapterWithEnabled { … };
class DEVICE_BLUETOOTH_EXPORT FlossManagerClientCallbacks { … };
}
class DEVICE_BLUETOOTH_EXPORT FlossManagerClient
: public FlossDBusClient,
public internal::FlossManagerClientCallbacks,
public dbus::ObjectManager::Interface { … };
}
#endif