#ifndef DEVICE_BLUETOOTH_FLOSS_FLOSS_FEATURES_H_
#define DEVICE_BLUETOOTH_FLOSS_FLOSS_FEATURES_H_
#include "base/feature_list.h"
#include "build/chromeos_buildflags.h"
#include "device/bluetooth/bluetooth_export.h"
namespace floss {
namespace features {
#if BUILDFLAG(IS_CHROMEOS_ASH)
DEVICE_BLUETOOTH_EXPORT BASE_DECLARE_FEATURE(kFlossEnabled);
DEVICE_BLUETOOTH_EXPORT BASE_DECLARE_FEATURE(kFlossIsAvailable);
DEVICE_BLUETOOTH_EXPORT BASE_DECLARE_FEATURE(kFlossIsAvailabilityCheckNeeded);
DEVICE_BLUETOOTH_EXPORT BASE_DECLARE_FEATURE(kLLPrivacyIsAvailable);
#endif
bool DEVICE_BLUETOOTH_EXPORT IsFlossEnabled();
bool DEVICE_BLUETOOTH_EXPORT IsFlossAvailable();
bool DEVICE_BLUETOOTH_EXPORT IsFlossAvailabilityCheckNeeded();
bool DEVICE_BLUETOOTH_EXPORT IsLLPrivacyAvailable();
}
}
#endif