#ifndef DEVICE_BASE_FEATURES_H_
#define DEVICE_BASE_FEATURES_H_
#include "base/feature_list.h"
#include "build/build_config.h"
#include "device/base/device_base_export.h"
namespace device {
#if BUILDFLAG(IS_WIN)
DEVICE_BASE_EXPORT BASE_DECLARE_FEATURE(kNewBLEGattSessionHandling);
#endif
namespace features {
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)
DEVICE_BASE_EXPORT BASE_DECLARE_FEATURE(kWebBluetoothConfirmPairingSupport);
#endif
#if BUILDFLAG(IS_WIN)
DEVICE_BASE_EXPORT BASE_DECLARE_FEATURE(
kUncachedGattDiscoveryForGattConnection);
#endif
#if BUILDFLAG(IS_ANDROID)
DEVICE_BASE_EXPORT BASE_DECLARE_FEATURE(kGmsCoreLocationRequestParamOverride);
#endif
#if BUILDFLAG(IS_ANDROID)
DEVICE_BASE_EXPORT BASE_DECLARE_FEATURE(kWebSerialWiredDevicesAndroid);
#endif
}
}
#endif