#ifndef DEVICE_BLUETOOTH_FLOSS_FLOSS_ADMIN_CLIENT_H_
#define DEVICE_BLUETOOTH_FLOSS_FLOSS_ADMIN_CLIENT_H_
#include <queue>
#include "base/functional/callback.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/floss/exported_callback_manager.h"
#include "device/bluetooth/floss/floss_dbus_client.h"
namespace dbus {
class ObjectPath;
}
namespace floss {
const char kAdminCallbackInterfaceName[] = …;
struct DEVICE_BLUETOOTH_EXPORT PolicyEffect { … };
class FlossAdminClientObserver : public base::CheckedObserver { … };
class DEVICE_BLUETOOTH_EXPORT FlossAdminClient : public FlossDBusClient { … };
}
#endif